GTK4: match gtk3, make dark buttons lighter

This commit is contained in:
Daniel Ruiz de Alegría 2021-04-19 11:41:44 +02:00
parent b168b08dd5
commit 68bb01fd7a
No known key found for this signature in database
GPG Key ID: 59667A77E8BFCB6C
2 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ $_default_button_c: lighten($bg_color,2%);
color: $tc;
outline-color: if($c != $_default_button_c, $alt_focus_border_color, $focus_border_color);
border-color: if($c!=$_default_button_c, _border_color($c, true), $borders_color); //tint if not default button color
background-image: image(lighten($c, 5%));
background-image: image(lighten($c, 7%));
@include _shadows($_button_shadow);
}

View File

@ -8,4 +8,4 @@
< background-image: if($variant == 'light', linear-gradient(to top, darken($c, 2%) 2px, $c),
< linear-gradient(to top, darken($c,1%) 2px, $c));
---
> background-image: image(lighten($c, 5%));
> background-image: image(lighten($c, 7%));