_colors.scss
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, .1);
50
}
51
}
52
53
// Make translucent color opaque by blending with the background color.
54
@function opacify($color, $bg) {
55
@return mix(change-color($color, $alpha: 1), $bg, alpha($color) * 100%);
56
}
57
58
// Set the accessible opacity for the overlay depending on the given color.
59
@function overlay($state, $color, $background: transparent, $opacity-modifier: 0) {
60
@if saturation($color) > 50% or saturation($background) > 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), $background, $opacity * 100%);
83
}
84
85
// Private variables for dark background colors
86
$-dark-background: #181818;
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: #f2f2f2;
97
$base: #fff; // for views
98
$base-alt: #fafafa;
99
$surface: #fff;
100
$switch-surface: #fff; // Special case for switches
101
$on-surface: on($surface);
102
103
$primary-on-light: #1a73e8;
104
$primary-on-dark: #8ab4f8;
105
$primary: $primary-on-light;
106
$on-primary: on($primary);
107
108
$error-on-light: #d93025;
109
$error-on-dark: #f28b82;
110
$error: $error-on-light;
111
$on-error: on($error);
112
113
$warning-on-light: #f4b400;
114
$warning-on-dark: #fdd633;
115
$warning: $warning-on-light;
116
$on-warning: on($warning);
117
118
$success-on-light: #0f9d58;
119
$success-on-dark: #81c995;
120
$success: $success-on-light;
121
$on-success: on($success);
122
123
$visited-on-light: $purple-500;
124
$visited-on-dark: $purple-200;
125
$visited: $visited-on-light;
126
$on-visited: on($visited);
127
128
$os-background: $-dark-background;
129
$on-os-background: on($os-background);
130
131
$tooltip: rgba(#616161, .9);
132
$on-tooltip: on($tooltip);
133
134
$scrim: rgba(black, .6);
135
$on-scrim: on($scrim);
136
137
$scrim-alt: rgba(black, .3);
138
$on-scrim-alt: on($scrim-alt);
139
140
$panel: #1f1f1f;
141
$on-panel: on($panel);
142
143
// for Unity panel which doesn't allow translucent colors
144
$panel-solid: $panel;
145
$on-panel-solid: on($panel-solid);
146
147
$titlebar: #383838;
148
$titlebar-backdrop: #303030;
149
$on-titlebar: on($titlebar);
150
151
$titlebar-indicator: currentcolor;
152
153
@if $variant == "dark" {
154
$background: $-dark-background;
155
$base: $-dark-surface-1dp;
156
$base-alt: $-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: #ccc;
186
$on-panel-solid: on($panel-solid);
187
188
$titlebar: #e0e0e0;
189
$titlebar-backdrop: #d6d6d6;
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