@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/orange.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "orange";
|
|
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/orange.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'orange',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#fff5e9cc',
|
|
10
|
+
p3: 'color(display-p3 0.9961 0.9608 0.9176 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#271d1380',
|
|
14
|
+
p3: 'color(display-p3 0.1412 0.1098 0.0706 / 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
|
+
'#fefcfb',
|
|
21
|
+
'#fff7ed',
|
|
22
|
+
'#ffefd6',
|
|
23
|
+
'#ffdfb5',
|
|
24
|
+
'#ffd19a',
|
|
25
|
+
'#ffc182',
|
|
26
|
+
'#f5ae73',
|
|
27
|
+
'#ec9455',
|
|
28
|
+
'#f76b15',
|
|
29
|
+
'#ef5f00',
|
|
30
|
+
'#cc4e00',
|
|
31
|
+
'#582d1d',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#c0400004',
|
|
35
|
+
'#ff8e0012',
|
|
36
|
+
'#ff9c0029',
|
|
37
|
+
'#ff91014a',
|
|
38
|
+
'#ff8b0065',
|
|
39
|
+
'#ff81007d',
|
|
40
|
+
'#ed6c008c',
|
|
41
|
+
'#e35f00aa',
|
|
42
|
+
'#f65e00ea',
|
|
43
|
+
'#ef5f00',
|
|
44
|
+
'#cc4e00',
|
|
45
|
+
'#431200e2',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.995 0.988 0.985)',
|
|
51
|
+
'color(display-p3 0.994 0.968 0.934)',
|
|
52
|
+
'color(display-p3 0.989 0.938 0.85)',
|
|
53
|
+
'color(display-p3 1 0.874 0.687)',
|
|
54
|
+
'color(display-p3 1 0.821 0.583)',
|
|
55
|
+
'color(display-p3 0.975 0.767 0.545)',
|
|
56
|
+
'color(display-p3 0.919 0.693 0.486)',
|
|
57
|
+
'color(display-p3 0.877 0.597 0.379)',
|
|
58
|
+
'color(display-p3 0.9 0.45 0.2)',
|
|
59
|
+
'color(display-p3 0.87 0.409 0.164)',
|
|
60
|
+
'color(display-p3 0.76 0.34 0)',
|
|
61
|
+
'color(display-p3 0.323 0.185 0.127)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.757 0.267 0.024 / 0.016)',
|
|
65
|
+
'color(display-p3 0.886 0.533 0.008 / 0.067)',
|
|
66
|
+
'color(display-p3 0.922 0.584 0.008 / 0.15)',
|
|
67
|
+
'color(display-p3 1 0.604 0.004 / 0.314)',
|
|
68
|
+
'color(display-p3 1 0.569 0.004 / 0.416)',
|
|
69
|
+
'color(display-p3 0.949 0.494 0.004 / 0.455)',
|
|
70
|
+
'color(display-p3 0.839 0.408 0 / 0.514)',
|
|
71
|
+
'color(display-p3 0.804 0.349 0 / 0.62)',
|
|
72
|
+
'color(display-p3 0.878 0.314 0 / 0.8)',
|
|
73
|
+
'color(display-p3 0.843 0.29 0 / 0.836)',
|
|
74
|
+
'color(display-p3 0.76 0.34 0)',
|
|
75
|
+
'color(display-p3 0.323 0.185 0.127)',
|
|
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
|
+
'#17120e',
|
|
83
|
+
'#1e160f',
|
|
84
|
+
'#331e0b',
|
|
85
|
+
'#462100',
|
|
86
|
+
'#562800',
|
|
87
|
+
'#66350c',
|
|
88
|
+
'#7e451d',
|
|
89
|
+
'#a35829',
|
|
90
|
+
'#f76b15',
|
|
91
|
+
'#ff801f',
|
|
92
|
+
'#ffa057',
|
|
93
|
+
'#ffe0c2',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#ec360007',
|
|
97
|
+
'#fe6d000e',
|
|
98
|
+
'#fb6a0025',
|
|
99
|
+
'#ff590039',
|
|
100
|
+
'#ff61004a',
|
|
101
|
+
'#fd75045c',
|
|
102
|
+
'#ff832c75',
|
|
103
|
+
'#fe84389d',
|
|
104
|
+
'#fe6d15f7',
|
|
105
|
+
'#ff801f',
|
|
106
|
+
'#ffa057',
|
|
107
|
+
'#ffe0c2',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.088 0.07 0.057)',
|
|
113
|
+
'color(display-p3 0.113 0.089 0.061)',
|
|
114
|
+
'color(display-p3 0.189 0.12 0.056)',
|
|
115
|
+
'color(display-p3 0.262 0.132 0)',
|
|
116
|
+
'color(display-p3 0.315 0.168 0.016)',
|
|
117
|
+
'color(display-p3 0.376 0.219 0.088)',
|
|
118
|
+
'color(display-p3 0.465 0.283 0.147)',
|
|
119
|
+
'color(display-p3 0.601 0.359 0.201)',
|
|
120
|
+
'color(display-p3 0.9 0.45 0.2)',
|
|
121
|
+
'color(display-p3 0.98 0.51 0.23)',
|
|
122
|
+
'color(display-p3 1 0.63 0.38)',
|
|
123
|
+
'color(display-p3 0.98 0.883 0.775)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.961 0.247 0 / 0.022)',
|
|
127
|
+
'color(display-p3 0.992 0.529 0 / 0.051)',
|
|
128
|
+
'color(display-p3 0.996 0.486 0 / 0.131)',
|
|
129
|
+
'color(display-p3 0.996 0.384 0 / 0.211)',
|
|
130
|
+
'color(display-p3 1 0.455 0 / 0.265)',
|
|
131
|
+
'color(display-p3 1 0.529 0.129 / 0.332)',
|
|
132
|
+
'color(display-p3 1 0.569 0.251 / 0.429)',
|
|
133
|
+
'color(display-p3 1 0.584 0.302 / 0.572)',
|
|
134
|
+
'color(display-p3 1 0.494 0.216 / 0.895)',
|
|
135
|
+
'color(display-p3 1 0.522 0.235 / 0.979)',
|
|
136
|
+
'color(display-p3 1 0.63 0.38)',
|
|
137
|
+
'color(display-p3 0.98 0.883 0.775)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/pink.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "pink";
|
|
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/pink.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'pink',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#fef5facc',
|
|
10
|
+
p3: 'color(display-p3 0.9922 0.9608 0.9804 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#31132980',
|
|
14
|
+
p3: 'color(display-p3 0.1725 0.0784 0.149 / 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
|
+
'#fffcfe',
|
|
21
|
+
'#fef7fb',
|
|
22
|
+
'#fee9f5',
|
|
23
|
+
'#fbdcef',
|
|
24
|
+
'#f6cee7',
|
|
25
|
+
'#efbfdd',
|
|
26
|
+
'#e7acd0',
|
|
27
|
+
'#dd93c2',
|
|
28
|
+
'#d6409f',
|
|
29
|
+
'#cf3897',
|
|
30
|
+
'#c2298a',
|
|
31
|
+
'#651249',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#ff00aa03',
|
|
35
|
+
'#e0008008',
|
|
36
|
+
'#f4008c16',
|
|
37
|
+
'#e2008b23',
|
|
38
|
+
'#d1008331',
|
|
39
|
+
'#c0007840',
|
|
40
|
+
'#b6006f53',
|
|
41
|
+
'#af006f6c',
|
|
42
|
+
'#c8007fbf',
|
|
43
|
+
'#c2007ac7',
|
|
44
|
+
'#b60074d6',
|
|
45
|
+
'#59003bed',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.998 0.989 0.996)',
|
|
51
|
+
'color(display-p3 0.992 0.97 0.985)',
|
|
52
|
+
'color(display-p3 0.981 0.917 0.96)',
|
|
53
|
+
'color(display-p3 0.963 0.867 0.932)',
|
|
54
|
+
'color(display-p3 0.939 0.815 0.899)',
|
|
55
|
+
'color(display-p3 0.907 0.756 0.859)',
|
|
56
|
+
'color(display-p3 0.869 0.683 0.81)',
|
|
57
|
+
'color(display-p3 0.825 0.59 0.751)',
|
|
58
|
+
'color(display-p3 0.775 0.297 0.61)',
|
|
59
|
+
'color(display-p3 0.748 0.27 0.581)',
|
|
60
|
+
'color(display-p3 0.698 0.219 0.528)',
|
|
61
|
+
'color(display-p3 0.363 0.101 0.279)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.675 0.024 0.675 / 0.012)',
|
|
65
|
+
'color(display-p3 0.757 0.02 0.51 / 0.032)',
|
|
66
|
+
'color(display-p3 0.765 0.008 0.529 / 0.083)',
|
|
67
|
+
'color(display-p3 0.737 0.008 0.506 / 0.134)',
|
|
68
|
+
'color(display-p3 0.663 0.004 0.451 / 0.185)',
|
|
69
|
+
'color(display-p3 0.616 0.004 0.424 / 0.244)',
|
|
70
|
+
'color(display-p3 0.596 0.004 0.412 / 0.318)',
|
|
71
|
+
'color(display-p3 0.573 0.004 0.404 / 0.412)',
|
|
72
|
+
'color(display-p3 0.682 0 0.447 / 0.702)',
|
|
73
|
+
'color(display-p3 0.655 0 0.424 / 0.73)',
|
|
74
|
+
'color(display-p3 0.698 0.219 0.528)',
|
|
75
|
+
'color(display-p3 0.363 0.101 0.279)',
|
|
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
|
+
'#191117',
|
|
83
|
+
'#21121d',
|
|
84
|
+
'#37172f',
|
|
85
|
+
'#4b143d',
|
|
86
|
+
'#591c47',
|
|
87
|
+
'#692955',
|
|
88
|
+
'#833869',
|
|
89
|
+
'#a84885',
|
|
90
|
+
'#d6409f',
|
|
91
|
+
'#de51a8',
|
|
92
|
+
'#ff8dcc',
|
|
93
|
+
'#fdd1ea',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#f412bc09',
|
|
97
|
+
'#f420bb12',
|
|
98
|
+
'#fe37cc29',
|
|
99
|
+
'#fc1ec43f',
|
|
100
|
+
'#fd35c24e',
|
|
101
|
+
'#fd51c75f',
|
|
102
|
+
'#fd62c87b',
|
|
103
|
+
'#ff68c8a2',
|
|
104
|
+
'#fe49bcd4',
|
|
105
|
+
'#ff5cc0dc',
|
|
106
|
+
'#ff8dcc',
|
|
107
|
+
'#ffd3ecfd',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.093 0.068 0.089)',
|
|
113
|
+
'color(display-p3 0.121 0.073 0.11)',
|
|
114
|
+
'color(display-p3 0.198 0.098 0.179)',
|
|
115
|
+
'color(display-p3 0.271 0.095 0.231)',
|
|
116
|
+
'color(display-p3 0.32 0.127 0.273)',
|
|
117
|
+
'color(display-p3 0.382 0.177 0.326)',
|
|
118
|
+
'color(display-p3 0.477 0.238 0.405)',
|
|
119
|
+
'color(display-p3 0.612 0.304 0.51)',
|
|
120
|
+
'color(display-p3 0.775 0.297 0.61)',
|
|
121
|
+
'color(display-p3 0.808 0.356 0.645)',
|
|
122
|
+
'color(display-p3 1 0.535 0.78)',
|
|
123
|
+
'color(display-p3 0.964 0.826 0.912)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.984 0.071 0.855 / 0.03)',
|
|
127
|
+
'color(display-p3 1 0.2 0.8 / 0.059)',
|
|
128
|
+
'color(display-p3 1 0.294 0.886 / 0.139)',
|
|
129
|
+
'color(display-p3 1 0.192 0.82 / 0.219)',
|
|
130
|
+
'color(display-p3 1 0.282 0.827 / 0.274)',
|
|
131
|
+
'color(display-p3 1 0.396 0.835 / 0.337)',
|
|
132
|
+
'color(display-p3 1 0.459 0.831 / 0.442)',
|
|
133
|
+
'color(display-p3 1 0.478 0.827 / 0.585)',
|
|
134
|
+
'color(display-p3 1 0.373 0.784 / 0.761)',
|
|
135
|
+
'color(display-p3 1 0.435 0.792 / 0.795)',
|
|
136
|
+
'color(display-p3 1 0.535 0.78)',
|
|
137
|
+
'color(display-p3 0.964 0.826 0.912)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|