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

View raw Download
text/plain • 6.1 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 == "dragged" {
75
$opacity: .08 + $opacity-modifier;
76
} @else if $state == "activated" {
77
$opacity: .12 + $opacity-modifier;
78
} @else if $state == "selected" {
79
@return rgba($color, .24);
80
} @else {
81
@error "Invalid type: '#{$state}'";
82
}
83
84
@return mix(rgba($color, 1), $on, $opacity * 100%);
85
}
86
87
// Private variables for dark background colors
88
$-dark-background: #181818;
89
$-dark-surface-1dp: mix(white, $-dark-background, 5%);
90
$-dark-surface-4dp: mix(white, $-dark-background, 9%);
91
$-dark-surface-8dp: mix(white, $-dark-background, 12%);
92
$-dark-surface-switch: mix(white, $-dark-background, 60%);
93
94
//
95
// Main colors
96
//
97
98
$background: #f9f9f9;
99
$base: #fff; // for views
100
$surface: #fff;
101
$switch-surface: #fff; // Special case for switches
102
$on-surface: on($surface);
103
104
$primary-on-light: #1967d2;
105
$primary-on-dark: #8ab4f8;
106
$primary: $primary-on-light;
107
$on-primary: on($primary);
108
109
$error-on-light: #d93025;
110
$error-on-dark: #f28b82;
111
$error: $error-on-light;
112
$on-error: on($error);
113
114
$warning-on-light: #f9ab00;
115
$warning-on-dark: #fdd663;
116
$warning: $warning-on-light;
117
$on-warning: on($warning);
118
119
$success-on-light: #1e8e3e;
120
$success-on-dark: #81c995;
121
$success: $success-on-light;
122
$on-success: on($success);
123
124
$visited-on-light: #9334e6;
125
$visited-on-dark: #c58af9;
126
$visited: $visited-on-light;
127
$on-visited: on($visited);
128
129
$os-background: $-dark-background;
130
$on-os-background: on($os-background);
131
132
$tooltip: rgba(#616161, .9);
133
$on-tooltip: on($tooltip);
134
135
$scrim: rgba(black, .6);
136
$on-scrim: on($scrim);
137
138
$scrim-alt: rgba(black, .3);
139
$on-scrim-alt: on($scrim-alt);
140
141
$panel: #212121;
142
$on-panel: on($panel);
143
144
// for Unity panel which doesn't allow translucent colors
145
$panel-solid: $panel;
146
$on-panel-solid: on($panel-solid);
147
148
$titlebar: #424242;
149
$titlebar-backdrop: #303030;
150
$on-titlebar: on($titlebar);
151
152
$titlebar-indicator: currentcolor;
153
154
@if $variant == "dark" {
155
$background: $-dark-background;
156
$base: $-dark-surface-1dp;
157
$surface: $-dark-surface-8dp;
158
$switch-surface: $-dark-surface-switch;
159
$on-surface: on($surface);
160
161
$primary: $primary-on-dark;
162
$on-primary: on($primary);
163
164
$error: $error-on-dark;
165
$on-error: on($error);
166
167
$warning: $warning-on-dark;
168
$on-warning: on($warning);
169
170
$success: $success-on-dark;
171
$on-success: on($success);
172
173
$visited: $visited-on-dark;
174
$on-visited: on($visited);
175
176
$titlebar: $-dark-surface-4dp;
177
$titlebar-backdrop: $-dark-surface-1dp;
178
$on-titlebar: on($titlebar);
179
}
180
181
@if $topbar == "light" {
182
$panel: $scrim;
183
$on-panel: on($panel);
184
185
$panel-solid: #e0e0e0;
186
$on-panel-solid: on($panel-solid);
187
188
$titlebar: #f0f0f0;
189
$titlebar-backdrop: #ebebeb;
190
$on-titlebar: on($titlebar);
191
192
$titlebar-indicator: $primary;
193
}
194
195
//
196
// Overlay state colors
197
//
198
199
$overlay-selected: rgba($primary, .24);
200
201
//
202
// For “on” colors
203
//
204
205
@function primary($color) {
206
@return if(tone($color) == "dark", $primary-on-light, $primary-on-dark);
207
}
208
209
@function error($color) {
210
@return if(tone($color) == "dark", $error-on-light, $error-on-dark);
211
}
212
213
@function hint($color) {
214
@return rgba($color, if(has-alpha($color), .6, .7));
215
}
216
217
@function disabled($color) {
218
@return rgba($color, if(has-alpha($color), .38, .5));
219
}
220
221
@function disabled-hint($color) {
222
@return rgba($color, if(has-alpha($color), .26, .3));
223
}
224
225
@function stroke($color) {
226
@return rgba($color, if(has-alpha($color), .26, .3));
227
}
228
229
@function disabled-stroke($color) {
230
@return rgba($color, if(has-alpha($color), .12, .2));
231
}
232
233
@function divider($color) {
234
@return rgba($color, if(has-alpha($color), .12, .2));
235
}
236
237
@function fill($color) {
238
@return rgba($color, if(has-alpha($color), .08, .08));
239
}
240
241
@function entry-fill($color) {
242
@return rgba($color, if(has-alpha($color), .04, .04));
243
}
244
245
@function scrollbar-thumb($color, $state: null) {
246
@if $state == null {
247
@return rgba($color, if(has-alpha($color), .38, .5));
248
} @else if $state == "hover" {
249
@return rgba($color, if(has-alpha($color), .48, .6));
250
} @else if $state == "pressed" {
251
@return rgba($color, if(has-alpha($color), .6, .7));
252
} @else if $state == "disabled" {
253
@return rgba($color, if(has-alpha($color), .26, .3));
254
} @else {
255
@error "Invalid type: '#{$state}'";
256
}
257
}
258