mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 06:33:09 +00:00
14 lines
356 B
QML
14 lines
356 B
QML
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
import QtQuick.Effects
|
|
|
|
// Standard drop shadow for text in the shell.
|
|
// Use a drop shadow when text needs to be contrasted over a background.
|
|
|
|
MultiEffect {
|
|
shadowEnabled: true
|
|
shadowVerticalOffset: 1
|
|
blurMax: 8
|
|
shadowOpacity: 0.6
|
|
}
|