Skip to content

Commit

Permalink
IMprovements: GTK base color & Chrome/Chromium active tab color
Browse files Browse the repository at this point in the history
  • Loading branch information
thekomer committed Apr 5, 2022
1 parent fa57d6c commit f8ab8a8
Show file tree
Hide file tree
Showing 8 changed files with 827 additions and 827 deletions.
2 changes: 1 addition & 1 deletion gtk-2.0/gtkrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Text/base colors
gtk-color-scheme = "text_color:#BFC3CD\nbase_color:#111524"
gtk-color-scheme = "text_color:#BFC3CD\nbase_color:#131727"
# Foreground/background colors
gtk-color-scheme = "fg_color:#BFC3CD\nbg_color:#0E111D"
# Selection colors
Expand Down
2 changes: 1 addition & 1 deletion gtk-3.0/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Main definitions
$fg_color: if($variant == 'light', #31363d, #BFC3CD);
$bg_color: if($variant == 'light', darken( #EEEEEE, 3%), #0E111D);
$base_color: if($variant == 'light', #ebf0f5, lighten($bg_color, 2%));
$base_color: if($variant == 'light', #ebf0f5, lighten($bg_color, 3%));
$text_color: if($variant == 'light', #31363D, #BFC3CD);
$switch_bg: if($variant == 'light', #ffffff, transparentize(black,1));
$shadow_color: rgba(162, 162, 165, 0.21);
Expand Down
2 changes: 1 addition & 1 deletion gtk-3.0/apps/_chromium.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.background.chromium {
color: transparentize($fg_color, 0.2);
background-color: mix($selected_bg_color, $headerbar_color, 50%);//ighten($bg_color, 8%);
background-color: lighten(mix($bg_color, $base_color, 15%), 8%);
}
Loading

0 comments on commit f8ab8a8

Please sign in to comment.