Gtk-4: Fix color styling issues

This commit is contained in:
EliverLara
2021-12-05 14:55:19 -06:00
parent f187d1496d
commit ae73376031
8 changed files with 1288 additions and 1258 deletions

View File

@@ -597,7 +597,7 @@ box-shadow: none;
}
@mixin scale-highlight($dir) {
background: linear-gradient(to $dir, #00f17d, #00f7d2);
background: linear-gradient(to $dir, #00c6ff, $selected_bg_color);
}
@mixin selected-tab($dir) {
@@ -605,7 +605,7 @@ box-shadow: none;
linear-gradient(to $dir, $selected-tab-gradient-start, $selected-tab-gradient-end)
left
bottom
lighten(mix($base_color, $headerbar_color, 30%), 2%)
lighten(mix($base_color, darken($bg_color, 8%), 30%), 4%)
no-repeat;
@if $dir==right { background-size: 100% 2px; }
@else if $dir==bottom { background-size: 2px 100%; }