summaryrefslogtreecommitdiff
path: root/services/Colours.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-07 19:58:51 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-07 19:58:51 +1000
commit6e32b171d816f3492f48acff18498de90ff92f82 (patch)
tree27b9d29c96c30c4c820d9c0083eff3619c9ee61f /services/Colours.qml
parentfeat: launcher light/dark commands (diff)
downloadcaelestia-shell-6e32b171d816f3492f48acff18498de90ff92f82.tar.gz
caelestia-shell-6e32b171d816f3492f48acff18498de90ff92f82.tar.bz2
caelestia-shell-6e32b171d816f3492f48acff18498de90ff92f82.zip
colours: better on colour for dark mode
Diffstat (limited to 'services/Colours.qml')
-rw-r--r--services/Colours.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/Colours.qml b/services/Colours.qml
index dfd2870..07e2345 100644
--- a/services/Colours.qml
+++ b/services/Colours.qml
@@ -30,7 +30,7 @@ Singleton {
function on(c: color): color {
if (c.hslLightness < 0.5)
return Qt.hsla(c.hslHue, c.hslSaturation, 0.9, 1);
- return Qt.hsla(c.hslHue, c.hslSaturation, 0.2, 1);
+ return Qt.hsla(c.hslHue, c.hslSaturation, 0.1, 1);
}
function load(data: string, isPreview: bool): void {