From 9592f1b18d149e1cf76a32df419f6ed3db2af3d6 Mon Sep 17 00:00:00 2001 From: Vyn Date: Wed, 25 Jun 2025 12:05:50 +0200 Subject: [PATCH] Update default colors --- components/Palette.slint | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/Palette.slint b/components/Palette.slint index 0a69cb2..a3fbc82 100644 --- a/components/Palette.slint +++ b/components/Palette.slint @@ -29,7 +29,7 @@ // ---- export global Palette { - in-out property accent: Colors.cyan.darker(0.4); + in-out property accent: #56b6c2; in-out property foreground: #abb2bf; in-out property foreground-hint: foreground.darker(0.2); in-out property background: #282c34; @@ -38,8 +38,8 @@ export global Palette { in-out property popup-border: Colors.grey; in-out property control-foreground: #abb2bf; in-out property control-background: #393f4a; - in-out property card-background: background.brighter(0.2); - in-out property green: Colors.greenyellow; - in-out property orange: Colors.orange; - in-out property red: Colors.red; + in-out property card-background: #3b3f4c; + in-out property green: #98c379; + in-out property orange: #d19a66; + in-out property red: #e86671; }