Skip to content

Commit

Permalink
gtk: Use the warty bg color
Browse files Browse the repository at this point in the history
  • Loading branch information
3v1n0 committed Sep 6, 2024
1 parent c39a03e commit 34b46c8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gtk/src/default/gtk-3.0/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ $caret_color: if($variant == 'light', lighten($text_color, 5%), darken($text_col
$bg_color: if($variant == 'light', #FAFAFA, lighten($jet, 8%));
$fg_color: if($variant == 'light', $inkstone, $porcelain);

$is_warty_nostalgia: false !default;
@if $is_warty_nostalgia and $variant == 'light' {
$bg_color: $warty_nostalgia_bg;
}

$selected_fg_color: $accent_fg_color;
$selected_bg_color: if($variant == 'light', $accent_bg_color, darken($accent_bg_color, 4%));

Expand Down
5 changes: 5 additions & 0 deletions gtk/src/default/gtk-4.0/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ $text_color: if($variant == 'light', black, white);
$bg_color: if($variant == 'light', #FAFAFA, lighten($jet, 8%));
$fg_color: if($variant == 'light', $inkstone, $porcelain);

$is_warty_nostalgia: false !default;
@if $is_warty_nostalgia and $variant == 'light' {
$bg_color: $warty_nostalgia_bg;
}

$selected_fg_color: $accent_fg_color;
$selected_bg_color: $accent_bg_color;
$selected_borders_color: if($variant== 'light', darken($selected_bg_color, 15%), darken($selected_bg_color, 30%));
Expand Down

0 comments on commit 34b46c8

Please sign in to comment.