From b8a99eafcd0369008e192be4d8f6167a22fbccba Mon Sep 17 00:00:00 2001 From: Violetta Shakirova <38247153+vshakirova@users.noreply.github.com> Date: Tue, 8 Jun 2021 11:03:03 +0400 Subject: [PATCH] Fix hotbar light theme colors (#2943) 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 822a5f1c36..fff229699b 100644 --- a/src/renderer/themes/lens-dark.json +++ b/src/renderer/themes/lens-dark.json @@ -106,6 +106,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 8d9339d71a..5084b63c52 100644 --- a/src/renderer/themes/lens-light.json +++ b/src/renderer/themes/lens-light.json @@ -105,8 +105,9 @@ "drawerSubtitleBackground": "#f1f1f1", "drawerItemNameColor": "#727272", "drawerItemValueColor": "#555555", - "clusterMenuBackground": "#e8e8e8", + "clusterMenuBackground": "#d7d8da", "clusterMenuBorderColor": "#c9cfd3", + "clusterMenuCellBackground": "#bbbbbb", "clusterSettingsBackground": "#ffffff", "addClusterIconColor": "#8d8d8d", "boxShadow": "#0000003a",