From 4e2071ceb1bd0f4b20fe3a94729e4adab2e84b46 Mon Sep 17 00:00:00 2001 From: vshakirova Date: Thu, 3 Jun 2021 12:27:42 +0400 Subject: [PATCH] Fix hotbar light theme colors Signed-off-by: vshakirova --- src/renderer/components/hotbar/hotbar-icon.scss | 2 +- src/renderer/components/hotbar/hotbar-menu.scss | 4 ++-- src/renderer/themes/lens-dark.json | 1 + src/renderer/themes/lens-light.json | 3 ++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/renderer/components/hotbar/hotbar-icon.scss b/src/renderer/components/hotbar/hotbar-icon.scss index d573e86eb5..d890f622f8 100644 --- a/src/renderer/components/hotbar/hotbar-icon.scss +++ b/src/renderer/components/hotbar/hotbar-icon.scss @@ -71,7 +71,7 @@ &:hover { &:not(.active) { - box-shadow: 0 0 0px 3px var(--clusterMenuBackground), 0 0 0px 6px #ffffff30; + box-shadow: 0 0 0px 3px var(--clusterMenuBackground), 0 0 0px 6px #ffffff50; } } } diff --git a/src/renderer/components/hotbar/hotbar-menu.scss b/src/renderer/components/hotbar/hotbar-menu.scss index 5f0eaddc3c..3b7300507a 100644 --- a/src/renderer/components/hotbar/hotbar-menu.scss +++ b/src/renderer/components/hotbar/hotbar-menu.scss @@ -62,7 +62,7 @@ height: var(--cellHeight); min-height: var(--cellHeight); margin: 12px; - background: var(--layoutBackground); + background: var(--clusterMenuCellBackground); border-radius: 6px; position: relative; @@ -136,4 +136,4 @@ 100% { margin-top: 2px; } -} \ No newline at end of file +} diff --git a/src/renderer/themes/lens-dark.json b/src/renderer/themes/lens-dark.json index f96eb81453..312f42b92a 100644 --- a/src/renderer/themes/lens-dark.json +++ b/src/renderer/themes/lens-dark.json @@ -105,6 +105,7 @@ "drawerItemValueColor": "#a0a0a0", "clusterMenuBackground": "#252729", "clusterMenuBorderColor": "#252729", + "clusterMenuCellBackground": "#2e3136", "clusterSettingsBackground": "#1e2124", "addClusterIconColor": "#252729", "boxShadow": "#0000003a", diff --git a/src/renderer/themes/lens-light.json b/src/renderer/themes/lens-light.json index d3b5938de3..0a586ece3b 100644 --- a/src/renderer/themes/lens-light.json +++ b/src/renderer/themes/lens-light.json @@ -104,8 +104,9 @@ "drawerSubtitleBackground": "#f1f1f1", "drawerItemNameColor": "#727272", "drawerItemValueColor": "#555555", - "clusterMenuBackground": "#e8e8e8", + "clusterMenuBackground": "#d7d8da", "clusterMenuBorderColor": "#c9cfd3", + "clusterMenuCellBackground": "#bbbbbb", "clusterSettingsBackground": "#ffffff", "addClusterIconColor": "#8d8d8d", "boxShadow": "#0000003a",