Use better dark colours, and remove most of the border radius from the panel
This commit is contained in:
parent
2753b10a6f
commit
2528e8d631
2 changed files with 8 additions and 8 deletions
|
@ -39,8 +39,8 @@ $light_2: #f6f5f4;
|
|||
$light_3: #deddda;
|
||||
$light_4: #c0bfbc;
|
||||
$light_5: #9a9996;
|
||||
$dark_1: #77767b;
|
||||
$dark_2: #5e5c64;
|
||||
$dark_3: #3d3846;
|
||||
$dark_4: #241f31;
|
||||
$dark_5: #000000;
|
||||
$dark_1: #777777;
|
||||
$dark_2: #5e5e5e;
|
||||
$dark_3: #3d3d3d;
|
||||
$dark_4: #242424;
|
||||
$dark_5: #000000;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* Top Bar */
|
||||
// a.k.a. the panel
|
||||
|
||||
$panel_bg_color: if($variant == 'light', $light_3, $dark_5);
|
||||
$panel_bg_color: if($variant == 'light', $light_3, $dark_4);
|
||||
$panel_fg_color: if($variant == 'light', $fg_color, darken($fg_color, 5%));
|
||||
$panel_border_color: if($variant == 'light', darken($panel_bg_color, 2%), $panel_bg_color);
|
||||
|
||||
|
@ -36,13 +36,13 @@ $panel_transition_duration: 250ms; // same as the overview transition duration
|
|||
-minimum-hpadding: $base_padding;
|
||||
transition-duration: 150ms;
|
||||
border: 3px solid transparent;
|
||||
border-radius: 99px;
|
||||
border-radius: 3px;
|
||||
|
||||
&.clock-display {
|
||||
.clock {
|
||||
transition-duration: 150ms;
|
||||
border: 3px solid transparent;
|
||||
border-radius: 99px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue