summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {