diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-09-30 23:37:32 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-11-23 21:51:11 +0100 |
commit | 79d25833bfd261c36d954cf57845e5a416aaf849 (patch) | |
tree | 6b24dddc7d396e6a0cc5da3ab098ba459e836a5d /gui/themes/themes.js | |
parent | d7e65d5cd3ca87b7ebc11cc5f6e9bfd4e9cefbfd (diff) |
[ui] size tweaks and new assets
plus work on the systray menu
Diffstat (limited to 'gui/themes/themes.js')
-rw-r--r-- | gui/themes/themes.js | 20 |
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"; |