Added gtk-dark.css links to gtk.css so no attempt to show a dark theme causes adwaita-dark to activate

This commit is contained in:
Eudaimon 2022-10-18 15:19:05 +02:00
parent 7881887bb9
commit 672ba84a75
3 changed files with 2 additions and 30 deletions

1
gtk-3.0/gtk-dark.css Symbolic link
View File

@ -0,0 +1 @@
gtk.css

1
gtk-4.0/gtk-dark.css Symbolic link
View File

@ -0,0 +1 @@
gtk.css

View File

@ -2,37 +2,7 @@
$_default_button_c: $button_bg;
@function _border_color($c, $darker: false) {
@if $darker == true { @return darken($c, 20%); }
@else { @return darken($c, 10%); }
}
@function _text_shadow_color ($tc: $fg_color, $bg: $bg_color) {
//
// calculate the color of text shadows
//
// $tc is the text color
// $bg is the background color
//
$_lbg: lightness($bg)/100%;
@if lightness($tc)<50% { @return transparentize(white, 1-$_lbg/($_lbg*1.3)); }
@else { @return transparentize(black, $_lbg*0.8); }
}
@function _button_hilight_color($c) {
//
// calculate the right top hilight color for buttons
//
// $c: base color;
//
@if lightness($c)>95% { @return white; }
@else if lightness($c)>90% { @return transparentize(white, 0.15); }
@else if lightness($c)>80% { @return transparentize(white, 0.35); }
@else if lightness($c)>50% { @return transparentize(white, 0.5); }
@else if lightness($c)>40% { @return transparentize(white, 0.65); }
@else { @return transparentize(white, 0.7); }
//@return $top_hilight;
}
@mixin _button_text_shadow ($tc:$fg_color, $bg:$bg_color) {
//