Skip to content

Commit 211c66c

Browse files
committed
Mint-Y-Dark: Lighten up active applet bg in panel
Use 20% mix of accent_color and bg_color3 Fixes #516
1 parent a0ae678 commit 211c66c

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

src/Mint-Y/cinnamon/cinnamon-dark.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,7 +1221,7 @@ StScrollBar {
12211221
padding-left: 1px; }
12221222
.grouped-window-list-item-box:hover, .grouped-window-list-item-box:focus {
12231223
color: #e1e1e1;
1224-
background-color: #303036; }
1224+
background-color: #41584d; }
12251225
.grouped-window-list-item-box:active, .grouped-window-list-item-box:checked {
12261226
color: #e1e1e1;
12271227
border-color: #35a854; }
@@ -1478,7 +1478,7 @@ StScrollBar {
14781478
padding: 5px 0; }
14791479
.applet-box:hover, .applet-box:checked {
14801480
color: #ffffff;
1481-
background-color: #303036; }
1481+
background-color: #41584d; }
14821482
.applet-box:highlight {
14831483
background-image: none;
14841484
border-image: none;

src/Mint-Y/cinnamon/sass/_colors.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ $bg_color: null;
66
$bg_color2: null;
77
$bg_color3: null;
88
$bg_color4: null;
9+
$panel_active_bg: null;
910
$borders_color: null;
1011
$separator_color: null;
1112
$text_color: null;
@@ -26,6 +27,7 @@ $corner_bar_highlighted: null;
2627
$bg_color3: darken($bg_color, 22%);
2728
$bg_color4: darken($bg_color, 16%);
2829
$panel_bg: lighten($bg_color, 3%);
30+
$panel_active_bg: $bg_color2;
2931
$borders_color: darken($bg_color, 20%);
3032
$separator_color: darken($bg_color, 15%);
3133
$text_color: #303030;
@@ -46,6 +48,7 @@ $corner_bar_highlighted: null;
4648
$bg_color3: lighten($bg_color, 14%);
4749
$bg_color4: lighten($bg_color, 9%);
4850
$panel_bg: darken($bg_color, 2%);
51+
$panel_active_bg: mix($bg_color3, $accent_color, 80%);
4952
$borders_color: $bg_color2;
5053
$separator_color: lighten($bg_color, 2%);
5154
$panel_fg: #e1e1e1;

src/Mint-Y/cinnamon/sass/_common.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1615,7 +1615,7 @@ $base_padding: 7px;
16151615
&:hover,
16161616
&:focus {
16171617
color: $panel_fg;
1618-
background-color: $bg_color2;
1618+
background-color: $panel_active_bg;
16191619
}
16201620

16211621
&:active,
@@ -1967,7 +1967,7 @@ $applet_padding: 5px;
19671967
&:hover,
19681968
&:checked {
19691969
color: $noaccent_selected_fg_color;
1970-
background-color: $bg_color2;
1970+
background-color: $panel_active_bg;
19711971
}
19721972

19731973
&:highlight {

0 commit comments

Comments
 (0)