GTK3 theme: Lighten dark-fill color

This commit is contained in:
Daniel Ruiz de Alegría 2020-02-06 13:20:44 +01:00
parent e00a1c4e34
commit 54465ca581
4 changed files with 10 additions and 10 deletions

View File

@ -2341,7 +2341,7 @@ notebook > header {
padding: 1px;
border-color: #0d0e11;
border-width: 1px;
background-color: #181a20; }
background-color: #1b1d24; }
notebook > header:backdrop {
border-color: #111317;
background-color: #1d1f26; }
@ -2671,7 +2671,7 @@ switch {
border: 1px solid #0d0e11;
border-radius: 14px;
color: #eeeeec;
background-color: #181a20;
background-color: #1b1d24;
text-shadow: 0 1px rgba(0, 0, 0, 0.1);
/* only show i / o for the accessible theme */ }
switch:checked {
@ -3068,7 +3068,7 @@ treeview.view radio:selected {
scale trough, scale fill, progressbar trough {
border: 1px solid #0d0e11;
border-radius: 3px;
background-color: #181a20; }
background-color: #1b1d24; }
scale trough:disabled, scale fill:disabled, progressbar trough:disabled {
background-color: #252730; }
scale trough:backdrop, scale fill:backdrop, progressbar trough:backdrop {

View File

@ -2341,7 +2341,7 @@ notebook > header {
padding: 1px;
border-color: #0d0e11;
border-width: 1px;
background-color: #181a20; }
background-color: #1b1d24; }
notebook > header:backdrop {
border-color: #111317;
background-color: #1d1f26; }
@ -2671,7 +2671,7 @@ switch {
border: 1px solid #0d0e11;
border-radius: 14px;
color: #eeeeec;
background-color: #181a20;
background-color: #1b1d24;
text-shadow: 0 1px rgba(0, 0, 0, 0.1);
/* only show i / o for the accessible theme */ }
switch:checked {
@ -3068,7 +3068,7 @@ treeview.view radio:selected {
scale trough, scale fill, progressbar trough {
border: 1px solid #0d0e11;
border-radius: 3px;
background-color: #181a20; }
background-color: #1b1d24; }
scale trough:disabled, scale fill:disabled, progressbar trough:disabled {
background-color: #252730; }
scale trough:backdrop, scale fill:backdrop, progressbar trough:backdrop {

View File

@ -2351,7 +2351,7 @@ notebook > header {
padding: 1px;
border-color: #d1d1d1;
border-width: 1px;
background-color: #e8e8e8; }
background-color: #efefef; }
notebook > header:backdrop {
border-color: #dadada;
background-color: #f2f2f2; }
@ -2681,7 +2681,7 @@ switch {
border: 1px solid #d1d1d1;
border-radius: 14px;
color: #5c616c;
background-color: #e8e8e8;
background-color: #efefef;
text-shadow: 0 1px rgba(0, 0, 0, 0.1);
/* only show i / o for the accessible theme */ }
switch:checked {
@ -3089,7 +3089,7 @@ treeview.view radio:selected {
scale trough, scale fill, progressbar trough {
border: 1px solid #d1d1d1;
border-radius: 3px;
background-color: #e8e8e8; }
background-color: #efefef; }
scale trough:disabled, scale fill:disabled, progressbar trough:disabled {
background-color: #fdfdfd; }
scale trough:backdrop, scale fill:backdrop, progressbar trough:backdrop {

View File

@ -16,7 +16,7 @@ $borders_edge: if($variant == 'light', transparentize(white, 0.2), transparentiz
$link_color: if($variant == 'light', darken($selected_bg_color, 10%), lighten($selected_bg_color, 20%));
$link_visited_color: if($variant == 'light', darken($selected_bg_color, 20%), lighten($selected_bg_color, 10%));
$top_hilight: $borders_edge;
$dark_fill: mix($borders_color, $bg_color, 50%);
$dark_fill: mix($borders_color, $bg_color, 35%);
$headerbar_color: if($variant == 'light', lighten($bg_color, 5%), darken($bg_color, 3%));
$menu_color: if($variant == 'light', $base_color, mix($bg_color, $base_color, 20%));
$popover_bg_color: $bg_color;