@diskette/palette 0.19.0 → 0.21.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 +68 -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/brown.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "brown";
|
|
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/brown.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'brown',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#fbf8f4cc',
|
|
10
|
+
p3: 'color(display-p3 0.9843 0.9725 0.9569 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#271f1b80',
|
|
14
|
+
p3: 'color(display-p3 0.1412 0.1176 0.102 / 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
|
+
'#fefdfc',
|
|
21
|
+
'#fcf9f6',
|
|
22
|
+
'#f6eee7',
|
|
23
|
+
'#f0e4d9',
|
|
24
|
+
'#ebdaca',
|
|
25
|
+
'#e4cdb7',
|
|
26
|
+
'#dcbc9f',
|
|
27
|
+
'#cea37e',
|
|
28
|
+
'#ad7f58',
|
|
29
|
+
'#a07553',
|
|
30
|
+
'#815e46',
|
|
31
|
+
'#3e332e',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#aa550003',
|
|
35
|
+
'#aa550009',
|
|
36
|
+
'#a04b0018',
|
|
37
|
+
'#9b4a0026',
|
|
38
|
+
'#9f4d0035',
|
|
39
|
+
'#a04e0048',
|
|
40
|
+
'#a34e0060',
|
|
41
|
+
'#9f4a0081',
|
|
42
|
+
'#823c00a7',
|
|
43
|
+
'#723300ac',
|
|
44
|
+
'#522100b9',
|
|
45
|
+
'#140600d1',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.995 0.992 0.989)',
|
|
51
|
+
'color(display-p3 0.987 0.976 0.964)',
|
|
52
|
+
'color(display-p3 0.959 0.936 0.909)',
|
|
53
|
+
'color(display-p3 0.934 0.897 0.855)',
|
|
54
|
+
'color(display-p3 0.909 0.856 0.798)',
|
|
55
|
+
'color(display-p3 0.88 0.808 0.73)',
|
|
56
|
+
'color(display-p3 0.841 0.742 0.639)',
|
|
57
|
+
'color(display-p3 0.782 0.647 0.514)',
|
|
58
|
+
'color(display-p3 0.651 0.505 0.368)',
|
|
59
|
+
'color(display-p3 0.601 0.465 0.344)',
|
|
60
|
+
'color(display-p3 0.485 0.374 0.288)',
|
|
61
|
+
'color(display-p3 0.236 0.202 0.183)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.675 0.349 0.024 / 0.012)',
|
|
65
|
+
'color(display-p3 0.675 0.349 0.024 / 0.036)',
|
|
66
|
+
'color(display-p3 0.573 0.314 0.012 / 0.091)',
|
|
67
|
+
'color(display-p3 0.545 0.302 0.008 / 0.146)',
|
|
68
|
+
'color(display-p3 0.561 0.29 0.004 / 0.204)',
|
|
69
|
+
'color(display-p3 0.553 0.294 0.004 / 0.271)',
|
|
70
|
+
'color(display-p3 0.557 0.286 0.004 / 0.361)',
|
|
71
|
+
'color(display-p3 0.549 0.275 0.004 / 0.487)',
|
|
72
|
+
'color(display-p3 0.447 0.22 0 / 0.632)',
|
|
73
|
+
'color(display-p3 0.388 0.188 0 / 0.655)',
|
|
74
|
+
'color(display-p3 0.485 0.374 0.288)',
|
|
75
|
+
'color(display-p3 0.236 0.202 0.183)',
|
|
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
|
+
'#12110f',
|
|
83
|
+
'#1c1816',
|
|
84
|
+
'#28211d',
|
|
85
|
+
'#322922',
|
|
86
|
+
'#3e3128',
|
|
87
|
+
'#4d3c2f',
|
|
88
|
+
'#614a39',
|
|
89
|
+
'#7c5f46',
|
|
90
|
+
'#ad7f58',
|
|
91
|
+
'#b88c67',
|
|
92
|
+
'#dbb594',
|
|
93
|
+
'#f2e1ca',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#91110002',
|
|
97
|
+
'#fba67c0c',
|
|
98
|
+
'#fcb58c19',
|
|
99
|
+
'#fbbb8a24',
|
|
100
|
+
'#fcb88931',
|
|
101
|
+
'#fdba8741',
|
|
102
|
+
'#ffbb8856',
|
|
103
|
+
'#ffbe8773',
|
|
104
|
+
'#feb87da8',
|
|
105
|
+
'#ffc18cb3',
|
|
106
|
+
'#fed1aad9',
|
|
107
|
+
'#feecd4f2',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.071 0.067 0.059)',
|
|
113
|
+
'color(display-p3 0.107 0.095 0.087)',
|
|
114
|
+
'color(display-p3 0.151 0.13 0.115)',
|
|
115
|
+
'color(display-p3 0.191 0.161 0.138)',
|
|
116
|
+
'color(display-p3 0.235 0.194 0.162)',
|
|
117
|
+
'color(display-p3 0.291 0.237 0.192)',
|
|
118
|
+
'color(display-p3 0.365 0.295 0.232)',
|
|
119
|
+
'color(display-p3 0.469 0.377 0.287)',
|
|
120
|
+
'color(display-p3 0.651 0.505 0.368)',
|
|
121
|
+
'color(display-p3 0.697 0.557 0.423)',
|
|
122
|
+
'color(display-p3 0.835 0.715 0.597)',
|
|
123
|
+
'color(display-p3 0.938 0.885 0.802)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.855 0.071 0 / 0.005)',
|
|
127
|
+
'color(display-p3 0.98 0.706 0.525 / 0.043)',
|
|
128
|
+
'color(display-p3 0.996 0.745 0.576 / 0.093)',
|
|
129
|
+
'color(display-p3 1 0.765 0.592 / 0.135)',
|
|
130
|
+
'color(display-p3 1 0.761 0.588 / 0.181)',
|
|
131
|
+
'color(display-p3 1 0.773 0.592 / 0.24)',
|
|
132
|
+
'color(display-p3 0.996 0.776 0.58 / 0.32)',
|
|
133
|
+
'color(display-p3 1 0.78 0.573 / 0.433)',
|
|
134
|
+
'color(display-p3 1 0.769 0.549 / 0.627)',
|
|
135
|
+
'color(display-p3 1 0.792 0.596 / 0.677)',
|
|
136
|
+
'color(display-p3 0.835 0.715 0.597)',
|
|
137
|
+
'color(display-p3 0.938 0.885 0.802)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/crimson.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "crimson";
|
|
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/crimson.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'crimson',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#fef5f8cc',
|
|
10
|
+
p3: 'color(display-p3 0.9922 0.9608 0.9725 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#2f151f80',
|
|
14
|
+
p3: 'color(display-p3 0.1647 0.0863 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
|
+
'#fffcfd',
|
|
21
|
+
'#fef7f9',
|
|
22
|
+
'#ffe9f0',
|
|
23
|
+
'#fedce7',
|
|
24
|
+
'#facedd',
|
|
25
|
+
'#f3bed1',
|
|
26
|
+
'#eaacc3',
|
|
27
|
+
'#e093b2',
|
|
28
|
+
'#e93d82',
|
|
29
|
+
'#df3478',
|
|
30
|
+
'#cb1d63',
|
|
31
|
+
'#621639',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#ff005503',
|
|
35
|
+
'#e0004008',
|
|
36
|
+
'#ff005216',
|
|
37
|
+
'#f8005123',
|
|
38
|
+
'#e5004f31',
|
|
39
|
+
'#d0004b41',
|
|
40
|
+
'#bf004753',
|
|
41
|
+
'#b6004a6c',
|
|
42
|
+
'#e2005bc2',
|
|
43
|
+
'#d70056cb',
|
|
44
|
+
'#c4004fe2',
|
|
45
|
+
'#530026e9',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.998 0.989 0.992)',
|
|
51
|
+
'color(display-p3 0.991 0.969 0.976)',
|
|
52
|
+
'color(display-p3 0.987 0.917 0.941)',
|
|
53
|
+
'color(display-p3 0.975 0.866 0.904)',
|
|
54
|
+
'color(display-p3 0.953 0.813 0.864)',
|
|
55
|
+
'color(display-p3 0.921 0.755 0.817)',
|
|
56
|
+
'color(display-p3 0.88 0.683 0.761)',
|
|
57
|
+
'color(display-p3 0.834 0.592 0.694)',
|
|
58
|
+
'color(display-p3 0.843 0.298 0.507)',
|
|
59
|
+
'color(display-p3 0.807 0.266 0.468)',
|
|
60
|
+
'color(display-p3 0.731 0.195 0.388)',
|
|
61
|
+
'color(display-p3 0.352 0.111 0.221)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.675 0.024 0.349 / 0.012)',
|
|
65
|
+
'color(display-p3 0.757 0.02 0.267 / 0.032)',
|
|
66
|
+
'color(display-p3 0.859 0.008 0.294 / 0.083)',
|
|
67
|
+
'color(display-p3 0.827 0.008 0.298 / 0.134)',
|
|
68
|
+
'color(display-p3 0.753 0.008 0.275 / 0.189)',
|
|
69
|
+
'color(display-p3 0.682 0.004 0.247 / 0.244)',
|
|
70
|
+
'color(display-p3 0.62 0.004 0.251 / 0.318)',
|
|
71
|
+
'color(display-p3 0.6 0.004 0.251 / 0.408)',
|
|
72
|
+
'color(display-p3 0.776 0 0.298 / 0.702)',
|
|
73
|
+
'color(display-p3 0.737 0 0.275 / 0.734)',
|
|
74
|
+
'color(display-p3 0.731 0.195 0.388)',
|
|
75
|
+
'color(display-p3 0.352 0.111 0.221)',
|
|
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
|
+
'#191114',
|
|
83
|
+
'#201318',
|
|
84
|
+
'#381525',
|
|
85
|
+
'#4d122f',
|
|
86
|
+
'#5c1839',
|
|
87
|
+
'#6d2545',
|
|
88
|
+
'#873356',
|
|
89
|
+
'#b0436e',
|
|
90
|
+
'#e93d82',
|
|
91
|
+
'#ee518a',
|
|
92
|
+
'#ff92ad',
|
|
93
|
+
'#fdd3e8',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#f4126709',
|
|
97
|
+
'#f22f7a11',
|
|
98
|
+
'#fe2a8b2a',
|
|
99
|
+
'#fd158741',
|
|
100
|
+
'#fd278f51',
|
|
101
|
+
'#fe459763',
|
|
102
|
+
'#fd559b7f',
|
|
103
|
+
'#fe5b9bab',
|
|
104
|
+
'#fe418de8',
|
|
105
|
+
'#ff5693ed',
|
|
106
|
+
'#ff92ad',
|
|
107
|
+
'#ffd5eafd',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.093 0.068 0.078)',
|
|
113
|
+
'color(display-p3 0.117 0.078 0.095)',
|
|
114
|
+
'color(display-p3 0.203 0.091 0.143)',
|
|
115
|
+
'color(display-p3 0.277 0.087 0.182)',
|
|
116
|
+
'color(display-p3 0.332 0.115 0.22)',
|
|
117
|
+
'color(display-p3 0.394 0.162 0.268)',
|
|
118
|
+
'color(display-p3 0.489 0.222 0.336)',
|
|
119
|
+
'color(display-p3 0.638 0.289 0.429)',
|
|
120
|
+
'color(display-p3 0.843 0.298 0.507)',
|
|
121
|
+
'color(display-p3 0.864 0.364 0.539)',
|
|
122
|
+
'color(display-p3 1 0.56 0.66)',
|
|
123
|
+
'color(display-p3 0.966 0.834 0.906)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.984 0.071 0.463 / 0.03)',
|
|
127
|
+
'color(display-p3 0.996 0.282 0.569 / 0.055)',
|
|
128
|
+
'color(display-p3 0.996 0.227 0.573 / 0.148)',
|
|
129
|
+
'color(display-p3 1 0.157 0.569 / 0.227)',
|
|
130
|
+
'color(display-p3 1 0.231 0.604 / 0.286)',
|
|
131
|
+
'color(display-p3 1 0.337 0.643 / 0.349)',
|
|
132
|
+
'color(display-p3 1 0.416 0.663 / 0.454)',
|
|
133
|
+
'color(display-p3 0.996 0.427 0.651 / 0.614)',
|
|
134
|
+
'color(display-p3 1 0.345 0.596 / 0.832)',
|
|
135
|
+
'color(display-p3 1 0.42 0.62 / 0.853)',
|
|
136
|
+
'color(display-p3 1 0.56 0.66)',
|
|
137
|
+
'color(display-p3 0.966 0.834 0.906)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|