by roundabout, Saturday, 6 March 2021, 23:31:16 (1615073476), pushed by roundabout, Sunday, 11 May 2025, 13:22:56 (1746969776)
Author identity: nana-4 <hnmaigo@gmail.com>
9b9c5c6cd2f5dc91961eca1821c1256c050ff9a6
src/_colors.scss
@@ -95,7 +95,6 @@ $-dark-surface-switch: mix(white, $-dark-background, 60%);
$background: #f9f9f9;
$base: #fff; // for views
$base-alt: #fff;
$surface: #fff;
$switch-surface: #fff; // Special case for switches
$on-surface: on($surface);
@@ -153,7 +152,6 @@ $titlebar-indicator: currentcolor;
@if $variant == "dark" {
$background: $-dark-background;
$base: $-dark-surface-1dp;
$base-alt: $-dark-surface-1dp;
$surface: $-dark-surface-8dp;
$switch-surface: $-dark-surface-switch;
$on-surface: on($surface);
src/_colors.scss.template
@@ -95,7 +95,6 @@ $-dark-surface-switch: mix(white, $-dark-background, 60%);
$background: %BG%;
$base: %MATERIA_VIEW%; // for views
$base-alt: %INACTIVE_MATERIA_VIEW%;
$surface: %MATERIA_SURFACE%;
$switch-surface: %MATERIA_SURFACE%; // Special case for switches
$on-surface: %FG%;
@@ -153,7 +152,6 @@ $titlebar-indicator: currentcolor;
@if $variant == "dark" {
$background: if(tone(%BG%) == "dark", %BG%, $-dark-background);
$base: if(tone(%BG%) == "dark", %MATERIA_VIEW%, $-dark-surface-1dp);
$base-alt: if(tone(%BG%) == "dark", %INACTIVE_MATERIA_VIEW%, $-dark-surface-1dp);
$surface: if(tone(%BG%) == "dark", %MATERIA_SURFACE%, $-dark-surface-8dp);
$switch-surface: if(tone(%BG%) == "dark", %MATERIA_SURFACE%, $-dark-surface-switch);
$on-surface: if(tone(%BG%) == "dark", %FG%, on($surface));
src/gtk/sass/_colors-public.scss
@@ -39,7 +39,7 @@ text foreground color of insensitive widgets */
/*
insensitive text widgets and the like base background color */
@define-color insensitive_base_color #{"" + $base-alt};
@define-color insensitive_base_color #{"" + $base};
/*
widget text/foreground color on backdrop windows */
src/gtk/sass/_drawing-3.20.scss
@@ -92,7 +92,7 @@
@if $t == raised-disabled {
box-shadow: $shadow-z1;
background-color: $base-alt;
background-color: $base;
color: disabled($on-surface);
}
}
src/gtk/sass/apps/_misc.scss
@@ -227,7 +227,7 @@ tooltip.background.chromium {
}
&:disabled {
background-color: $base-alt;
background-color: $base;
}
}