@diskette/palette 0.19.0 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +90 -70
- package/dist/cli/cli.d.ts +1 -1
- package/dist/cli/cli.js +59 -9
- package/dist/colors/amber.d.ts +26 -14
- package/dist/colors/amber.js +130 -114
- package/dist/colors/blue.d.ts +26 -14
- package/dist/colors/blue.js +130 -114
- package/dist/colors/bronze.d.ts +26 -14
- package/dist/colors/bronze.js +130 -114
- package/dist/colors/brown.d.ts +26 -14
- package/dist/colors/brown.js +130 -114
- package/dist/colors/crimson.d.ts +26 -14
- package/dist/colors/crimson.js +130 -114
- package/dist/colors/cyan.d.ts +26 -14
- package/dist/colors/cyan.js +130 -114
- package/dist/colors/gold.d.ts +26 -14
- package/dist/colors/gold.js +130 -114
- package/dist/colors/grass.d.ts +26 -14
- package/dist/colors/grass.js +130 -114
- package/dist/colors/gray.d.ts +26 -14
- package/dist/colors/gray.js +130 -114
- package/dist/colors/green.d.ts +26 -14
- package/dist/colors/green.js +130 -114
- package/dist/colors/indigo.d.ts +26 -14
- package/dist/colors/indigo.js +130 -114
- package/dist/colors/iris.d.ts +26 -14
- package/dist/colors/iris.js +130 -114
- package/dist/colors/jade.d.ts +26 -14
- package/dist/colors/jade.js +130 -114
- package/dist/colors/lime.d.ts +26 -14
- package/dist/colors/lime.js +130 -114
- package/dist/colors/mauve.d.ts +26 -14
- package/dist/colors/mauve.js +130 -114
- package/dist/colors/mint.d.ts +26 -14
- package/dist/colors/mint.js +130 -114
- package/dist/colors/olive.d.ts +26 -14
- package/dist/colors/olive.js +130 -114
- package/dist/colors/orange.d.ts +26 -14
- package/dist/colors/orange.js +130 -114
- package/dist/colors/pink.d.ts +26 -14
- package/dist/colors/pink.js +130 -114
- package/dist/colors/plum.d.ts +26 -14
- package/dist/colors/plum.js +130 -114
- package/dist/colors/purple.d.ts +26 -14
- package/dist/colors/purple.js +130 -114
- package/dist/colors/red.d.ts +26 -14
- package/dist/colors/red.js +130 -114
- package/dist/colors/ruby.d.ts +26 -14
- package/dist/colors/ruby.js +130 -114
- package/dist/colors/sage.d.ts +26 -14
- package/dist/colors/sage.js +130 -114
- package/dist/colors/sand.d.ts +26 -14
- package/dist/colors/sand.js +130 -114
- package/dist/colors/sky.d.ts +26 -14
- package/dist/colors/sky.js +130 -114
- package/dist/colors/slate.d.ts +26 -14
- package/dist/colors/slate.js +130 -114
- package/dist/colors/teal.d.ts +26 -14
- package/dist/colors/teal.js +130 -114
- package/dist/colors/tomato.d.ts +26 -14
- package/dist/colors/tomato.js +130 -114
- package/dist/colors/violet.d.ts +26 -14
- package/dist/colors/violet.js +130 -114
- package/dist/colors/yellow.d.ts +26 -14
- package/dist/colors/yellow.js +130 -114
- package/dist/css.d.ts +1 -0
- package/dist/css.js +26 -8
- package/dist/index.d.ts +808 -436
- package/dist/index.js +1 -1
- package/dist/types.d.ts +20 -16
- package/dist/utils.d.ts +9 -1
- package/dist/utils.js +44 -8
- package/package.json +4 -3
- package/dist/cli/commands/generate.d.ts +0 -54
- package/dist/cli/commands/generate.js +0 -86
- package/dist/cli/commands/list.d.ts +0 -48
- package/dist/cli/commands/list.js +0 -33
package/dist/colors/mint.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "mint";
|
|
3
|
-
indicator:
|
|
3
|
+
indicator: number;
|
|
4
4
|
contrast: string;
|
|
5
|
-
track:
|
|
5
|
+
track: number;
|
|
6
6
|
surface: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
light: {
|
|
8
|
+
srgb: string;
|
|
9
|
+
p3: string;
|
|
10
10
|
};
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
dark: {
|
|
12
|
+
srgb: string;
|
|
13
|
+
p3: string;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
light: {
|
|
17
|
+
srgb: {
|
|
18
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
19
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
20
|
+
};
|
|
21
|
+
p3: {
|
|
22
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
23
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
24
|
+
};
|
|
19
25
|
};
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
26
|
+
dark: {
|
|
27
|
+
srgb: {
|
|
28
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
29
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
30
|
+
};
|
|
31
|
+
p3: {
|
|
32
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
33
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
34
|
+
};
|
|
23
35
|
};
|
|
24
36
|
};
|
|
25
37
|
export default _default;
|
package/dist/colors/mint.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'mint',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: '#1a211e',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#effaf8cc',
|
|
10
|
+
p3: 'color(display-p3 0.9451 0.9804 0.9725 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#15272780',
|
|
14
|
+
p3: 'color(display-p3 0.0941 0.149 0.1412 / 0.5)',
|
|
15
15
|
},
|
|
16
16
|
},
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
17
|
+
light: {
|
|
18
|
+
srgb: {
|
|
19
|
+
solid: [
|
|
20
|
+
'#f9fefd',
|
|
21
|
+
'#f2fbf9',
|
|
22
|
+
'#ddf9f2',
|
|
23
|
+
'#c8f4e9',
|
|
24
|
+
'#b3ecde',
|
|
25
|
+
'#9ce0d0',
|
|
26
|
+
'#7ecfbd',
|
|
27
|
+
'#4cbba5',
|
|
28
|
+
'#86ead4',
|
|
29
|
+
'#7de0cb',
|
|
30
|
+
'#027864',
|
|
31
|
+
'#16433c',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#00d5aa06',
|
|
35
|
+
'#00b18a0d',
|
|
36
|
+
'#00d29e22',
|
|
37
|
+
'#00cc9937',
|
|
38
|
+
'#00c0914c',
|
|
39
|
+
'#00b08663',
|
|
40
|
+
'#00a17d81',
|
|
41
|
+
'#009e7fb3',
|
|
42
|
+
'#00d3a579',
|
|
43
|
+
'#00c39982',
|
|
44
|
+
'#007763fd',
|
|
45
|
+
'#00312ae9',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.98 0.995 0.992)',
|
|
51
|
+
'color(display-p3 0.957 0.985 0.977)',
|
|
52
|
+
'color(display-p3 0.888 0.972 0.95)',
|
|
53
|
+
'color(display-p3 0.819 0.951 0.916)',
|
|
54
|
+
'color(display-p3 0.747 0.918 0.873)',
|
|
55
|
+
'color(display-p3 0.668 0.87 0.818)',
|
|
56
|
+
'color(display-p3 0.567 0.805 0.744)',
|
|
57
|
+
'color(display-p3 0.42 0.724 0.649)',
|
|
58
|
+
'color(display-p3 0.62 0.908 0.834)',
|
|
59
|
+
'color(display-p3 0.585 0.871 0.797)',
|
|
60
|
+
'color(display-p3 0.203 0.463 0.397)',
|
|
61
|
+
'color(display-p3 0.136 0.259 0.236)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.02 0.804 0.608 / 0.02)',
|
|
65
|
+
'color(display-p3 0.02 0.647 0.467 / 0.044)',
|
|
66
|
+
'color(display-p3 0.004 0.761 0.553 / 0.114)',
|
|
67
|
+
'color(display-p3 0.004 0.741 0.545 / 0.181)',
|
|
68
|
+
'color(display-p3 0.004 0.678 0.51 / 0.255)',
|
|
69
|
+
'color(display-p3 0.004 0.616 0.463 / 0.334)',
|
|
70
|
+
'color(display-p3 0.004 0.549 0.412 / 0.432)',
|
|
71
|
+
'color(display-p3 0 0.529 0.392 / 0.581)',
|
|
72
|
+
'color(display-p3 0.004 0.765 0.569 / 0.381)',
|
|
73
|
+
'color(display-p3 0.004 0.69 0.51 / 0.416)',
|
|
74
|
+
'color(display-p3 0.203 0.463 0.397)',
|
|
75
|
+
'color(display-p3 0.136 0.259 0.236)',
|
|
76
|
+
],
|
|
77
|
+
},
|
|
70
78
|
},
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
79
|
+
dark: {
|
|
80
|
+
srgb: {
|
|
81
|
+
solid: [
|
|
82
|
+
'#0e1515',
|
|
83
|
+
'#0f1b1b',
|
|
84
|
+
'#092c2b',
|
|
85
|
+
'#003a38',
|
|
86
|
+
'#004744',
|
|
87
|
+
'#105650',
|
|
88
|
+
'#1e685f',
|
|
89
|
+
'#277f70',
|
|
90
|
+
'#86ead4',
|
|
91
|
+
'#a8f5e5',
|
|
92
|
+
'#58d5ba',
|
|
93
|
+
'#c4f5e1',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#00dede05',
|
|
97
|
+
'#00f9f90b',
|
|
98
|
+
'#00fff61d',
|
|
99
|
+
'#00fff42c',
|
|
100
|
+
'#00fff23a',
|
|
101
|
+
'#0effeb4a',
|
|
102
|
+
'#34fde55e',
|
|
103
|
+
'#41ffdf76',
|
|
104
|
+
'#92ffe7e9',
|
|
105
|
+
'#aefeedf5',
|
|
106
|
+
'#67ffded2',
|
|
107
|
+
'#cbfee9f5',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.059 0.082 0.081)',
|
|
113
|
+
'color(display-p3 0.068 0.104 0.105)',
|
|
114
|
+
'color(display-p3 0.077 0.17 0.168)',
|
|
115
|
+
'color(display-p3 0.068 0.224 0.22)',
|
|
116
|
+
'color(display-p3 0.104 0.275 0.264)',
|
|
117
|
+
'color(display-p3 0.154 0.332 0.313)',
|
|
118
|
+
'color(display-p3 0.207 0.403 0.373)',
|
|
119
|
+
'color(display-p3 0.258 0.49 0.441)',
|
|
120
|
+
'color(display-p3 0.62 0.908 0.834)',
|
|
121
|
+
'color(display-p3 0.725 0.954 0.898)',
|
|
122
|
+
'color(display-p3 0.482 0.825 0.733)',
|
|
123
|
+
'color(display-p3 0.807 0.955 0.887)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0.992 0.992 / 0.017)',
|
|
127
|
+
'color(display-p3 0.071 0.98 0.98 / 0.043)',
|
|
128
|
+
'color(display-p3 0.176 0.996 0.996 / 0.11)',
|
|
129
|
+
'color(display-p3 0.071 0.996 0.973 / 0.169)',
|
|
130
|
+
'color(display-p3 0.243 1 0.949 / 0.223)',
|
|
131
|
+
'color(display-p3 0.369 1 0.933 / 0.286)',
|
|
132
|
+
'color(display-p3 0.459 1 0.914 / 0.362)',
|
|
133
|
+
'color(display-p3 0.49 1 0.89 / 0.454)',
|
|
134
|
+
'color(display-p3 0.678 0.996 0.914 / 0.904)',
|
|
135
|
+
'color(display-p3 0.761 1 0.941 / 0.95)',
|
|
136
|
+
'color(display-p3 0.482 0.825 0.733)',
|
|
137
|
+
'color(display-p3 0.807 0.955 0.887)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/olive.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "olive";
|
|
3
|
-
indicator:
|
|
3
|
+
indicator: number;
|
|
4
4
|
contrast: string;
|
|
5
|
-
track:
|
|
5
|
+
track: number;
|
|
6
6
|
surface: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
light: {
|
|
8
|
+
srgb: string;
|
|
9
|
+
p3: string;
|
|
10
10
|
};
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
dark: {
|
|
12
|
+
srgb: string;
|
|
13
|
+
p3: string;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
light: {
|
|
17
|
+
srgb: {
|
|
18
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
19
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
20
|
+
};
|
|
21
|
+
p3: {
|
|
22
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
23
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
24
|
+
};
|
|
19
25
|
};
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
26
|
+
dark: {
|
|
27
|
+
srgb: {
|
|
28
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
29
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
30
|
+
};
|
|
31
|
+
p3: {
|
|
32
|
+
solid: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
33
|
+
alpha: [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
34
|
+
};
|
|
23
35
|
};
|
|
24
36
|
};
|
|
25
37
|
export default _default;
|
package/dist/colors/olive.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'olive',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#ffffffcc',
|
|
10
|
+
p3: 'color(display-p3 1 1 1 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#1f201e80',
|
|
14
|
+
p3: 'color(display-p3 0.1176 0.1255 0.1176 / 0.5)',
|
|
15
15
|
},
|
|
16
16
|
},
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
17
|
+
light: {
|
|
18
|
+
srgb: {
|
|
19
|
+
solid: [
|
|
20
|
+
'#fcfdfc',
|
|
21
|
+
'#f8faf8',
|
|
22
|
+
'#eff1ef',
|
|
23
|
+
'#e7e9e7',
|
|
24
|
+
'#dfe2df',
|
|
25
|
+
'#d7dad7',
|
|
26
|
+
'#cccfcc',
|
|
27
|
+
'#b9bcb8',
|
|
28
|
+
'#898e87',
|
|
29
|
+
'#7f847d',
|
|
30
|
+
'#60655f',
|
|
31
|
+
'#1d211c',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#00550003',
|
|
35
|
+
'#00490007',
|
|
36
|
+
'#00200010',
|
|
37
|
+
'#00160018',
|
|
38
|
+
'#00180020',
|
|
39
|
+
'#00140028',
|
|
40
|
+
'#000f0033',
|
|
41
|
+
'#040f0047',
|
|
42
|
+
'#050f0078',
|
|
43
|
+
'#040e0082',
|
|
44
|
+
'#020a00a0',
|
|
45
|
+
'#010600e3',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.989 0.992 0.989)',
|
|
51
|
+
'color(display-p3 0.974 0.98 0.973)',
|
|
52
|
+
'color(display-p3 0.939 0.945 0.937)',
|
|
53
|
+
'color(display-p3 0.907 0.914 0.905)',
|
|
54
|
+
'color(display-p3 0.878 0.885 0.875)',
|
|
55
|
+
'color(display-p3 0.846 0.855 0.843)',
|
|
56
|
+
'color(display-p3 0.803 0.812 0.8)',
|
|
57
|
+
'color(display-p3 0.727 0.738 0.723)',
|
|
58
|
+
'color(display-p3 0.541 0.556 0.532)',
|
|
59
|
+
'color(display-p3 0.5 0.515 0.491)',
|
|
60
|
+
'color(display-p3 0.38 0.395 0.374)',
|
|
61
|
+
'color(display-p3 0.117 0.129 0.111)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.024 0.349 0.024 / 0.012)',
|
|
65
|
+
'color(display-p3 0.024 0.302 0.024 / 0.028)',
|
|
66
|
+
'color(display-p3 0.008 0.129 0.008 / 0.063)',
|
|
67
|
+
'color(display-p3 0.012 0.094 0.012 / 0.095)',
|
|
68
|
+
'color(display-p3 0.035 0.098 0.008 / 0.126)',
|
|
69
|
+
'color(display-p3 0.027 0.078 0.004 / 0.157)',
|
|
70
|
+
'color(display-p3 0.02 0.059 0 / 0.2)',
|
|
71
|
+
'color(display-p3 0.02 0.059 0.004 / 0.279)',
|
|
72
|
+
'color(display-p3 0.02 0.051 0.004 / 0.467)',
|
|
73
|
+
'color(display-p3 0.024 0.047 0 / 0.51)',
|
|
74
|
+
'color(display-p3 0.012 0.039 0 / 0.628)',
|
|
75
|
+
'color(display-p3 0.008 0.024 0 / 0.891)',
|
|
76
|
+
],
|
|
77
|
+
},
|
|
70
78
|
},
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
79
|
+
dark: {
|
|
80
|
+
srgb: {
|
|
81
|
+
solid: [
|
|
82
|
+
'#111210',
|
|
83
|
+
'#181917',
|
|
84
|
+
'#212220',
|
|
85
|
+
'#282a27',
|
|
86
|
+
'#2f312e',
|
|
87
|
+
'#383a36',
|
|
88
|
+
'#454843',
|
|
89
|
+
'#5c625b',
|
|
90
|
+
'#687066',
|
|
91
|
+
'#767d74',
|
|
92
|
+
'#afb5ad',
|
|
93
|
+
'#eceeec',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#00000000',
|
|
97
|
+
'#f1f2f008',
|
|
98
|
+
'#f4f5f312',
|
|
99
|
+
'#f3fef21a',
|
|
100
|
+
'#f2fbf122',
|
|
101
|
+
'#f4faed2c',
|
|
102
|
+
'#f2fced3b',
|
|
103
|
+
'#edfdeb57',
|
|
104
|
+
'#ebfde766',
|
|
105
|
+
'#f0fdec74',
|
|
106
|
+
'#f6fef4b0',
|
|
107
|
+
'#fdfffded',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.067 0.07 0.063)',
|
|
113
|
+
'color(display-p3 0.095 0.098 0.091)',
|
|
114
|
+
'color(display-p3 0.131 0.135 0.126)',
|
|
115
|
+
'color(display-p3 0.158 0.163 0.153)',
|
|
116
|
+
'color(display-p3 0.186 0.192 0.18)',
|
|
117
|
+
'color(display-p3 0.221 0.229 0.215)',
|
|
118
|
+
'color(display-p3 0.273 0.284 0.266)',
|
|
119
|
+
'color(display-p3 0.365 0.382 0.359)',
|
|
120
|
+
'color(display-p3 0.414 0.438 0.404)',
|
|
121
|
+
'color(display-p3 0.467 0.49 0.458)',
|
|
122
|
+
'color(display-p3 0.69 0.709 0.682)',
|
|
123
|
+
'color(display-p3 0.927 0.933 0.926)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0 0 / 0)',
|
|
127
|
+
'color(display-p3 0.984 0.988 0.976 / 0.03)',
|
|
128
|
+
'color(display-p3 0.992 0.996 0.988 / 0.068)',
|
|
129
|
+
'color(display-p3 0.953 0.996 0.949 / 0.102)',
|
|
130
|
+
'color(display-p3 0.969 1 0.965 / 0.131)',
|
|
131
|
+
'color(display-p3 0.973 1 0.969 / 0.169)',
|
|
132
|
+
'color(display-p3 0.98 1 0.961 / 0.228)',
|
|
133
|
+
'color(display-p3 0.961 1 0.957 / 0.334)',
|
|
134
|
+
'color(display-p3 0.949 1 0.922 / 0.397)',
|
|
135
|
+
'color(display-p3 0.953 1 0.941 / 0.452)',
|
|
136
|
+
'color(display-p3 0.976 1 0.965 / 0.688)',
|
|
137
|
+
'color(display-p3 0.992 1 0.992 / 0.929)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|