From 819099d84555bfef64a53164eb54f5b4df27aae5 Mon Sep 17 00:00:00 2001 From: reionwong Date: Thu, 29 Jul 2021 00:41:47 +0800 Subject: [PATCH] Improve dark mode display --- screenlocker/qml/LockScreen.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/screenlocker/qml/LockScreen.qml b/screenlocker/qml/LockScreen.qml index ef755c9..fad1d5e 100644 --- a/screenlocker/qml/LockScreen.qml +++ b/screenlocker/qml/LockScreen.qml @@ -210,7 +210,7 @@ Item { echoMode: TextInput.Password background: Rectangle { - color: FishUI.Theme.darkMode ? "#7B7B7B" : "white" + color: FishUI.Theme.darkMode ? "#B6B6B6" : "white" radius: FishUI.Theme.bigRadius opacity: 0.5 } @@ -248,7 +248,7 @@ Item { // } background: Rectangle { - color: FishUI.Theme.darkMode ? "#7B7B7B" : "white" + color: FishUI.Theme.darkMode ? "#B6B6B6" : "white" opacity: unlockBtn.pressed ? 0.3 : unlockBtn.hovered ? 0.4 : 0.5 radius: FishUI.Theme.bigRadius }