summaryrefslogtreecommitdiff
path: root/config/Appearance.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-01 12:54:00 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-01 12:54:00 +1000
commita38de28e72e49c7a50073db23447ba5741e51eef (patch)
tree8ecf9e35e4919481cc4985819331421008c97294 /config/Appearance.qml
parentbar: make power actually red (diff)
downloadcaelestia-shell-a38de28e72e49c7a50073db23447ba5741e51eef.tar.gz
caelestia-shell-a38de28e72e49c7a50073db23447ba5741e51eef.tar.bz2
caelestia-shell-a38de28e72e49c7a50073db23447ba5741e51eef.zip
bar: workspaces scroll specialws
Same behaviour as astal workspaces scroll Fix more undef errors Also increase by more when transparent dark layer
Diffstat (limited to 'config/Appearance.qml')
-rw-r--r--config/Appearance.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/Appearance.qml b/config/Appearance.qml
index b17b125..1a2f059 100644
--- a/config/Appearance.qml
+++ b/config/Appearance.qml
@@ -23,7 +23,7 @@ Singleton {
return c;
c = Qt.rgba(c.r, c.g, c.b, layer ? transparency.layers : transparency.base);
if (layer)
- c.hsvValue = Math.max(0, Math.min(1, c.hslLightness + (light ? -0.2 : 0.1)));
+ c.hsvValue = Math.max(0, Math.min(1, c.hslLightness + (light ? -0.2 : 0.2)));
return c;
}