diff --git a/.config/quickshell/ii/modules/background/Background.qml b/.config/quickshell/ii/modules/background/Background.qml index 9db17ac0..ce726305 100644 --- a/.config/quickshell/ii/modules/background/Background.qml +++ b/.config/quickshell/ii/modules/background/Background.qml @@ -264,14 +264,16 @@ Variants { Layout.fillWidth: false iconSize: Appearance.font.pixelSize.huge color: bgRoot.colText + style: Text.Raised + styleColor: Appearance.colors.colShadow } StyledText { Layout.fillWidth: false text: "Locked" color: bgRoot.colText - font { - pixelSize: Appearance.font.pixelSize.larger - } + font.pixelSize: Appearance.font.pixelSize.larger + style: Text.Raised + styleColor: Appearance.colors.colShadow } Item { Layout.fillWidth: bgRoot.textHorizontalAlignment !== Text.AlignRight; implicitWidth: 1 } @@ -293,9 +295,9 @@ Variants { } text: GlobalStates.screenUnlockFailed ? Translation.tr("Incorrect password") : Translation.tr("Enter password") color: GlobalStates.screenUnlockFailed ? Appearance.colors.colError : bgRoot.colText - font { - pixelSize: Appearance.font.pixelSize.normal - } + style: Text.Raised + styleColor: Appearance.colors.colShadow + font.pixelSize: Appearance.font.pixelSize.normal } } }