A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 _colors.scss.template

View raw Download
text/plain • 5.88 kiB
Unicode text, UTF-8 text
        
            
1
// When color definition differs for dark and light variant,
2
// it gets @if ed depending on $variant
3
4
@import 'color-palette';
5
6
@function gtkalpha($color, $alpha) {
7
@return unquote("alpha(#{$color}, #{$alpha})");
8
}
9
10
// Determine whether the color has alpha.
11
@function has-alpha($color) {
12
@return if(alpha($color) < 1, true, false);
13
}
14
15
// Determine whether the color is "light" or "dark".
16
@function tone($color) {
17
// Calculate color brightness as per https://www.w3.org/TR/AERT/#color-contrast
18
$brightness: (red($color) * 299 + green($color) * 587 + blue($color) * 114) / 1000;
19
20
@if $brightness >= 128 {
21
@return "light";
22
} @else {
23
@return "dark";
24
}
25
}
26
27
$on-light: #000;
28
$on-dark: #fff;
29
30
// Determine whether to use dark or light color on top of given color
31
// to meet accessibility standards for contrast.
32
@function on($color) {
33
$contrast-color: if(tone($color) == "dark", $on-dark, $on-light);
34
35
@if saturation($color) > 50% or alpha($color) < 1 {
36
@return $contrast-color;
37
} @else {
38
@return rgba($contrast-color, .87);
39
}
40
}
41
42
// Determine the strength of highlight on top of given color.
43
@function highlight($color) {
44
@if lightness($color) >= 80% {
45
@return rgba(white, .4);
46
} @else if lightness($color) >= 40% {
47
@return rgba(white, .2);
48
} @else {
49
@return rgba(white, .05);
50
}
51
}
52
53
// Make translucent color opaque by blending with the background color.
54
@function opacify($color, $on) {
55
@return mix(change-color($color, $alpha: 1), $on, alpha($color) * 100%);
56
}
57
58
// Set the accessible opacity for the overlay depending on the given color.
59
@function overlay($state, $color, $on: transparent, $opacity-modifier: 0) {
60
@if saturation($color) > 50% or saturation($on) > 50% {
61
$opacity-modifier: .04;
62
}
63
64
$opacity: ();
65
66
@if $state == "hover" {
67
$opacity: .08 + $opacity-modifier;
68
} @else if $state == "hover-alt" {
69
$opacity: .04 + $opacity-modifier;
70
} @else if $state == "focus" {
71
$opacity: .08 + $opacity-modifier;
72
} @else if $state == "pressed" {
73
$opacity: .12 + $opacity-modifier;
74
} @else if $state == "activated" {
75
$opacity: .12 + $opacity-modifier;
76
} @else if $state == "selected" {
77
@return rgba($color, .24);
78
} @else {
79
@error "Invalid type: '#{$state}'";
80
}
81
82
@return mix(rgba($color, 1), $on, $opacity * 100%);
83
}
84
85
// Private variables for dark background colors
86
$-dark-background: if(tone(%BG%) == "dark", %BG%, %FG%);
87
$-dark-surface-1dp: mix(white, $-dark-background, 5%);
88
$-dark-surface-4dp: mix(white, $-dark-background, 9%);
89
$-dark-surface-8dp: mix(white, $-dark-background, 12%);
90
$-dark-surface-switch: mix(white, $-dark-background, 60%);
91
92
//
93
// Main colors
94
//
95
96
$background: %BG%;
97
$base: %MATERIA_VIEW%; // for views
98
$surface: %MATERIA_SURFACE%;
99
$switch-surface: %MATERIA_SURFACE%; // Special case for switches
100
$on-surface: %FG%;
101
102
$primary-on-light: %SEL_BG%;
103
$primary-on-dark: %SEL_BG%;
104
$primary: $primary-on-light;
105
$on-primary: on($primary);
106
107
$error-on-light: %TERMINAL_COLOR9%;
108
$error-on-dark: %TERMINAL_COLOR9%;
109
$error: $error-on-light;
110
$on-error: on($error);
111
112
$warning-on-light: %TERMINAL_COLOR11%;
113
$warning-on-dark: %TERMINAL_COLOR11%;
114
$warning: $warning-on-light;
115
$on-warning: on($warning);
116
117
$success-on-light: %TERMINAL_COLOR10%;
118
$success-on-dark: %TERMINAL_COLOR10%;
119
$success: $success-on-light;
120
$on-success: on($success);
121
122
$visited-on-light: %TERMINAL_COLOR5%;
123
$visited-on-dark: %TERMINAL_COLOR5%;
124
$visited: $visited-on-light;
125
$on-visited: on($visited);
126
127
$os-background: %HDR_BG3%;
128
$on-os-background: %HDR_FG%;
129
130
$tooltip: rgba(%HDR_BG%, .9);
131
$on-tooltip: %HDR_FG%;
132
133
$scrim: rgba(black, %MATERIA_PANEL_OPACITY%);
134
$on-scrim: on($scrim);
135
136
$scrim-alt: rgba(black, .3);
137
$on-scrim-alt: on($scrim-alt);
138
139
$panel: %HDR_BG3%;
140
$on-panel: %HDR_FG%;
141
142
// for Unity panel which doesn't allow translucent colors
143
$panel-solid: %HDR_BG3%;
144
$on-panel-solid: %HDR_FG%;
145
146
$titlebar: %HDR_BG%;
147
$titlebar-backdrop: %HDR_BG2%;
148
$on-titlebar: %HDR_FG%;
149
150
$titlebar-indicator: currentcolor;
151
152
@if $variant == "dark" {
153
$background: if(tone(%BG%) == "dark", %BG%, $-dark-background);
154
$base: if(tone(%BG%) == "dark", %MATERIA_VIEW%, $-dark-surface-1dp);
155
$surface: if(tone(%BG%) == "dark", %MATERIA_SURFACE%, $-dark-surface-8dp);
156
$switch-surface: if(tone(%BG%) == "dark", %MATERIA_SURFACE%, $-dark-surface-switch);
157
$on-surface: if(tone(%BG%) == "dark", %FG%, on($surface));
158
159
$primary: $primary-on-dark;
160
$on-primary: on($primary);
161
162
$error: $error-on-dark;
163
$on-error: on($error);
164
165
$warning: $warning-on-dark;
166
$on-warning: on($warning);
167
168
$success: $success-on-dark;
169
$on-success: on($success);
170
171
$visited: $visited-on-dark;
172
$on-visited: on($visited);
173
174
$titlebar: if(tone(%BG%) == "dark", %HDR_BG%, $-dark-surface-4dp);
175
$titlebar-backdrop: if(tone(%BG%) == "dark", %HDR_BG2%, $-dark-surface-1dp);
176
$on-titlebar: if(tone(%BG%) == "dark", %HDR_FG%, on($titlebar));
177
}
178
179
@if $topbar == "light" {
180
$panel: $scrim;
181
$on-panel: on($panel);
182
183
$titlebar-indicator: $primary;
184
}
185
186
//
187
// Overlay state colors
188
//
189
190
$overlay-selected: rgba($primary, %MATERIA_SELECTION_OPACITY%);
191
192
//
193
// For “on” colors
194
//
195
196
@function primary($color) {
197
@return if(tone($color) == "dark", $primary-on-light, $primary-on-dark);
198
}
199
200
@function error($color) {
201
@return if(tone($color) == "dark", $error-on-light, $error-on-dark);
202
}
203
204
@function hint($color) {
205
@return rgba($color, if(has-alpha($color), .6, .7));
206
}
207
208
@function disabled($color) {
209
@return rgba($color, if(has-alpha($color), .38, .5));
210
}
211
212
@function disabled-hint($color) {
213
@return rgba($color, if(has-alpha($color), .26, .3));
214
}
215
216
@function stroke($color) {
217
@return rgba($color, if(has-alpha($color), .26, .3));
218
}
219
220
@function disabled-stroke($color) {
221
@return rgba($color, if(has-alpha($color), .12, .2));
222
}
223
224
@function divider($color) {
225
@return rgba($color, if(has-alpha($color), .12, .2));
226
}
227
228
@function fill($color) {
229
@return rgba($color, if(has-alpha($color), .08, .08));
230
}
231
232
@function entry-fill($color) {
233
@return rgba($color, if(has-alpha($color), .04, .04));
234
}
235