shift-shell/components/mobileshell/qml/components/TextDropShadow.qml
Devin Lin 12b9f1df9f components: Add TextDropShadow
Introduce shadow component that uses MultiEffect from Qt 6.5
2023-05-12 19:43:24 -04:00

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
}