summaryrefslogtreecommitdiff
path: root/gui/themes
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-09-30 23:37:32 +0200
committerkali kaneko (leap communications) <kali@leap.se>2021-10-06 18:38:22 +0200
commit2e4cf7adcbcb0335ba251e014e2b8eb7c1e1468d (patch)
tree9ad073088ec937c24305404015cbde2a485243a3 /gui/themes
parent45a5f7f5a431f17d0fabb5fd08229936e4390598 (diff)
[ui] size tweaks and new assets
plus work on the systray menu
Diffstat (limited to 'gui/themes')
-rw-r--r--gui/themes/themes.js20
1 files changed, 12 insertions, 8 deletions
diff --git a/gui/themes/themes.js b/gui/themes/themes.js
index 1c7a7c8..d35c662 100644
--- a/gui/themes/themes.js
+++ b/gui/themes/themes.js
@@ -27,11 +27,19 @@ const desktopAppWidth = 360;
const darkFocusBorder = fontColor;
const lightFocusBorder = "#d5d3e0";
-const accentOff = "#af0909";
-const accentConnecting = "#FFCC33";
-const accentOn = "#669933";
+const red = "#af0909";
+const yellow = "#ffcc33";
+const green = "#669933";
-const blue = "#0060DF";
+const accentOff = red;
+const accentConnecting = yellow;
+const accentOn = green;
+
+const signalLow = red;
+const signalMedium = yellow;
+const signalGood = green;
+
+const blue = "#007ac6";
const blueHovered = "#0250BB";
const bluePressed = "#054096";
const blueDisabled = "#a3c0f3";
@@ -53,7 +61,3 @@ const buttonColor = "#eeeeee";
const bgColor = "#f3f3f3";
const fgColor = "#ffffff";
-
-const signalGood = "green";
-const signalMedium = "orange";
-const signalLow = "red";