mirror of
https://github.com/luneko/SweetTokyoNight.git
synced 2025-12-18 01:09:52 +01:00
Fix light text color on menubar (#19)
This commit is contained in:
@@ -34,7 +34,7 @@ $link_visited_color:transparentize($link_color,0.5);
|
|||||||
$top_highlight: if($variant == 'light', transparentize(white, 0.8), transparentize(white, 0.9));
|
$top_highlight: if($variant == 'light', transparentize(white, 0.8), transparentize(white, 0.9));
|
||||||
$bottom_highlight: if($variant == 'light', transparentize(black, 0.8), transparentize(black, 0.9));
|
$bottom_highlight: if($variant == 'light', transparentize(black, 0.8), transparentize(black, 0.9));
|
||||||
$dark_fill: mix($borders_color, $bg_color, 35%);
|
$dark_fill: mix($borders_color, $bg_color, 35%);
|
||||||
$headerbar_color: $bg_color;
|
$headerbar_color: darken($main_dark_color, 7%);
|
||||||
$headerbar_fg_color: lighten( $text_color, 40%);
|
$headerbar_fg_color: lighten( $text_color, 40%);
|
||||||
$menu_color: if($variant == 'light', $base_color, mix($bg_color, $base_color, 20%));
|
$menu_color: if($variant == 'light', $base_color, mix($bg_color, $base_color, 20%));
|
||||||
$popover_bg_color: $base_color;
|
$popover_bg_color: $base_color;
|
||||||
|
|||||||
@@ -2302,7 +2302,7 @@ GraniteWidgetsWelcome {
|
|||||||
headerbar {
|
headerbar {
|
||||||
padding: 0px 13px;
|
padding: 0px 13px;
|
||||||
min-height: 34px;
|
min-height: 34px;
|
||||||
background: #0c0e14;
|
background: #07080c;
|
||||||
color: white;
|
color: white;
|
||||||
border-radius: 0; }
|
border-radius: 0; }
|
||||||
.titlebar:backdrop,
|
.titlebar:backdrop,
|
||||||
@@ -2841,7 +2841,7 @@ row {
|
|||||||
*********/
|
*********/
|
||||||
menubar,
|
menubar,
|
||||||
.menubar {
|
.menubar {
|
||||||
background-color: #161925;
|
background-color: #101013;
|
||||||
color: white;
|
color: white;
|
||||||
-GtkWidget-window-dragging: true;
|
-GtkWidget-window-dragging: true;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
@@ -6023,7 +6023,7 @@ ConversationListView {
|
|||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-bottom: 0px;
|
padding-bottom: 0px;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
background-color: #161925;
|
background-color: #101013;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border: solid rgba(0, 0, 0, 0.1);
|
border: solid rgba(0, 0, 0, 0.1);
|
||||||
|
|||||||
@@ -1666,18 +1666,18 @@ combobox:drop(active) {
|
|||||||
* Dialogs *
|
* Dialogs *
|
||||||
***********/
|
***********/
|
||||||
messagedialog .titlebar:not(headerbar) {
|
messagedialog .titlebar:not(headerbar) {
|
||||||
background-color: rgba(230, 230, 230, 0.95); }
|
background-color: rgba(16, 16, 19, 0.95); }
|
||||||
|
|
||||||
messagedialog .titlebar {
|
messagedialog .titlebar {
|
||||||
min-height: 20px;
|
min-height: 20px;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: rgba(230, 230, 230, 0.95);
|
background-color: rgba(16, 16, 19, 0.95);
|
||||||
border-style: none;
|
border-style: none;
|
||||||
border-top-left-radius: 4px;
|
border-top-left-radius: 4px;
|
||||||
border-top-right-radius: 4px; }
|
border-top-right-radius: 4px; }
|
||||||
|
|
||||||
messagedialog.csd.background {
|
messagedialog.csd.background {
|
||||||
background-color: rgba(230, 230, 230, 0.95);
|
background-color: rgba(16, 16, 19, 0.95);
|
||||||
color: #929ba8;
|
color: #929ba8;
|
||||||
border-bottom-left-radius: 5px;
|
border-bottom-left-radius: 5px;
|
||||||
border-bottom-right-radius: 5px; }
|
border-bottom-right-radius: 5px; }
|
||||||
@@ -2309,7 +2309,7 @@ GraniteWidgetsWelcome {
|
|||||||
headerbar {
|
headerbar {
|
||||||
padding: 0px 13px;
|
padding: 0px 13px;
|
||||||
min-height: 34px;
|
min-height: 34px;
|
||||||
background: linear-gradient(to bottom, #101013, #101013);
|
background: #101013;
|
||||||
color: #929ba8;
|
color: #929ba8;
|
||||||
border-radius: 0; }
|
border-radius: 0; }
|
||||||
.titlebar:backdrop,
|
.titlebar:backdrop,
|
||||||
@@ -2848,7 +2848,7 @@ row {
|
|||||||
*********/
|
*********/
|
||||||
menubar,
|
menubar,
|
||||||
.menubar {
|
.menubar {
|
||||||
background-color: #e6e6e6;
|
background-color: #101013;
|
||||||
color: #929ba8;
|
color: #929ba8;
|
||||||
-GtkWidget-window-dragging: true;
|
-GtkWidget-window-dragging: true;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
headerbar {
|
headerbar {
|
||||||
padding: 0px 13px;
|
padding: 0px 13px;
|
||||||
min-height: 34px;
|
min-height: 34px;
|
||||||
background: if($variant == 'light', linear-gradient(to bottom, darken($main_dark_color, 7%), darken($main_dark_color, 7%)) , mix($base_color, darken($headerbar_color, 8%), 30%));
|
background: if($variant == 'light', $headerbar_color , mix($base_color, darken($headerbar_color, 8%), 30%));
|
||||||
color: $headerbar_fg_color;
|
color: $headerbar_fg_color;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
&:backdrop {
|
&:backdrop {
|
||||||
|
|||||||
Reference in New Issue
Block a user