@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/plum.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "plum";
|
|
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/plum.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'plum',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#fdf5fdcc',
|
|
10
|
+
p3: 'color(display-p3 0.9843 0.9647 0.9843 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#2f152f80',
|
|
14
|
+
p3: 'color(display-p3 0.1647 0.0863 0.1725 / 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
|
+
'#fefcff',
|
|
21
|
+
'#fdf7fd',
|
|
22
|
+
'#fbebfb',
|
|
23
|
+
'#f7def8',
|
|
24
|
+
'#f2d1f3',
|
|
25
|
+
'#e9c2ec',
|
|
26
|
+
'#deade3',
|
|
27
|
+
'#cf91d8',
|
|
28
|
+
'#ab4aba',
|
|
29
|
+
'#a144af',
|
|
30
|
+
'#953ea3',
|
|
31
|
+
'#53195d',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#aa00ff03',
|
|
35
|
+
'#c000c008',
|
|
36
|
+
'#cc00cc14',
|
|
37
|
+
'#c200c921',
|
|
38
|
+
'#b700bd2e',
|
|
39
|
+
'#a400b03d',
|
|
40
|
+
'#9900a852',
|
|
41
|
+
'#9000a56e',
|
|
42
|
+
'#89009eb5',
|
|
43
|
+
'#7f0092bb',
|
|
44
|
+
'#730086c1',
|
|
45
|
+
'#40004be6',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.995 0.988 0.999)',
|
|
51
|
+
'color(display-p3 0.988 0.971 0.99)',
|
|
52
|
+
'color(display-p3 0.973 0.923 0.98)',
|
|
53
|
+
'color(display-p3 0.953 0.875 0.966)',
|
|
54
|
+
'color(display-p3 0.926 0.825 0.945)',
|
|
55
|
+
'color(display-p3 0.89 0.765 0.916)',
|
|
56
|
+
'color(display-p3 0.84 0.686 0.877)',
|
|
57
|
+
'color(display-p3 0.775 0.58 0.832)',
|
|
58
|
+
'color(display-p3 0.624 0.313 0.708)',
|
|
59
|
+
'color(display-p3 0.587 0.29 0.667)',
|
|
60
|
+
'color(display-p3 0.543 0.263 0.619)',
|
|
61
|
+
'color(display-p3 0.299 0.114 0.352)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.675 0.024 1 / 0.012)',
|
|
65
|
+
'color(display-p3 0.58 0.024 0.58 / 0.028)',
|
|
66
|
+
'color(display-p3 0.655 0.008 0.753 / 0.079)',
|
|
67
|
+
'color(display-p3 0.627 0.008 0.722 / 0.126)',
|
|
68
|
+
'color(display-p3 0.58 0.004 0.69 / 0.177)',
|
|
69
|
+
'color(display-p3 0.537 0.004 0.655 / 0.236)',
|
|
70
|
+
'color(display-p3 0.49 0.004 0.616 / 0.314)',
|
|
71
|
+
'color(display-p3 0.471 0.004 0.6 / 0.42)',
|
|
72
|
+
'color(display-p3 0.451 0 0.576 / 0.687)',
|
|
73
|
+
'color(display-p3 0.42 0 0.529 / 0.71)',
|
|
74
|
+
'color(display-p3 0.543 0.263 0.619)',
|
|
75
|
+
'color(display-p3 0.299 0.114 0.352)',
|
|
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
|
+
'#181118',
|
|
83
|
+
'#201320',
|
|
84
|
+
'#351a35',
|
|
85
|
+
'#451d47',
|
|
86
|
+
'#512454',
|
|
87
|
+
'#5e3061',
|
|
88
|
+
'#734079',
|
|
89
|
+
'#92549c',
|
|
90
|
+
'#ab4aba',
|
|
91
|
+
'#b658c4',
|
|
92
|
+
'#e796f3',
|
|
93
|
+
'#f4d4f4',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#f112f108',
|
|
97
|
+
'#f22ff211',
|
|
98
|
+
'#fd4cfd27',
|
|
99
|
+
'#f646ff3a',
|
|
100
|
+
'#f455ff48',
|
|
101
|
+
'#f66dff56',
|
|
102
|
+
'#f07cfd70',
|
|
103
|
+
'#ee84ff95',
|
|
104
|
+
'#e961feb6',
|
|
105
|
+
'#ed70ffc0',
|
|
106
|
+
'#f19cfef3',
|
|
107
|
+
'#feddfef4',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.09 0.068 0.092)',
|
|
113
|
+
'color(display-p3 0.118 0.077 0.121)',
|
|
114
|
+
'color(display-p3 0.192 0.105 0.202)',
|
|
115
|
+
'color(display-p3 0.25 0.121 0.271)',
|
|
116
|
+
'color(display-p3 0.293 0.152 0.319)',
|
|
117
|
+
'color(display-p3 0.343 0.198 0.372)',
|
|
118
|
+
'color(display-p3 0.424 0.262 0.461)',
|
|
119
|
+
'color(display-p3 0.54 0.341 0.595)',
|
|
120
|
+
'color(display-p3 0.624 0.313 0.708)',
|
|
121
|
+
'color(display-p3 0.666 0.365 0.748)',
|
|
122
|
+
'color(display-p3 0.86 0.602 0.933)',
|
|
123
|
+
'color(display-p3 0.936 0.836 0.949)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.973 0.071 0.973 / 0.026)',
|
|
127
|
+
'color(display-p3 0.933 0.267 1 / 0.059)',
|
|
128
|
+
'color(display-p3 0.918 0.333 0.996 / 0.148)',
|
|
129
|
+
'color(display-p3 0.91 0.318 1 / 0.219)',
|
|
130
|
+
'color(display-p3 0.914 0.388 1 / 0.269)',
|
|
131
|
+
'color(display-p3 0.906 0.463 1 / 0.328)',
|
|
132
|
+
'color(display-p3 0.906 0.529 1 / 0.425)',
|
|
133
|
+
'color(display-p3 0.906 0.553 1 / 0.568)',
|
|
134
|
+
'color(display-p3 0.875 0.427 1 / 0.69)',
|
|
135
|
+
'color(display-p3 0.886 0.471 0.996 / 0.732)',
|
|
136
|
+
'color(display-p3 0.86 0.602 0.933)',
|
|
137
|
+
'color(display-p3 0.936 0.836 0.949)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/purple.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "purple";
|
|
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/purple.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'purple',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#faf5fecc',
|
|
10
|
+
p3: 'color(display-p3 0.9804 0.9647 0.9922 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#2b173580',
|
|
14
|
+
p3: 'color(display-p3 0.149 0.0941 0.1961 / 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
|
+
'#fefcfe',
|
|
21
|
+
'#fbf7fe',
|
|
22
|
+
'#f7edfe',
|
|
23
|
+
'#f2e2fc',
|
|
24
|
+
'#ead5f9',
|
|
25
|
+
'#e0c4f4',
|
|
26
|
+
'#d1afec',
|
|
27
|
+
'#be93e4',
|
|
28
|
+
'#8e4ec6',
|
|
29
|
+
'#8347b9',
|
|
30
|
+
'#8145b5',
|
|
31
|
+
'#402060',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#aa00aa03',
|
|
35
|
+
'#8000e008',
|
|
36
|
+
'#8e00f112',
|
|
37
|
+
'#8d00e51d',
|
|
38
|
+
'#8000db2a',
|
|
39
|
+
'#7a01d03b',
|
|
40
|
+
'#6d00c350',
|
|
41
|
+
'#6600c06c',
|
|
42
|
+
'#5c00adb1',
|
|
43
|
+
'#53009eb8',
|
|
44
|
+
'#52009aba',
|
|
45
|
+
'#250049df',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.995 0.988 0.996)',
|
|
51
|
+
'color(display-p3 0.983 0.971 0.993)',
|
|
52
|
+
'color(display-p3 0.963 0.931 0.989)',
|
|
53
|
+
'color(display-p3 0.937 0.888 0.981)',
|
|
54
|
+
'color(display-p3 0.904 0.837 0.966)',
|
|
55
|
+
'color(display-p3 0.86 0.774 0.942)',
|
|
56
|
+
'color(display-p3 0.799 0.69 0.91)',
|
|
57
|
+
'color(display-p3 0.719 0.583 0.874)',
|
|
58
|
+
'color(display-p3 0.523 0.318 0.751)',
|
|
59
|
+
'color(display-p3 0.483 0.289 0.7)',
|
|
60
|
+
'color(display-p3 0.473 0.281 0.687)',
|
|
61
|
+
'color(display-p3 0.234 0.132 0.363)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.675 0.024 0.675 / 0.012)',
|
|
65
|
+
'color(display-p3 0.443 0.024 0.722 / 0.028)',
|
|
66
|
+
'color(display-p3 0.506 0.008 0.835 / 0.071)',
|
|
67
|
+
'color(display-p3 0.451 0.004 0.831 / 0.114)',
|
|
68
|
+
'color(display-p3 0.431 0.004 0.788 / 0.165)',
|
|
69
|
+
'color(display-p3 0.384 0.004 0.745 / 0.228)',
|
|
70
|
+
'color(display-p3 0.357 0.004 0.71 / 0.31)',
|
|
71
|
+
'color(display-p3 0.322 0.004 0.702 / 0.416)',
|
|
72
|
+
'color(display-p3 0.298 0 0.639 / 0.683)',
|
|
73
|
+
'color(display-p3 0.271 0 0.58 / 0.71)',
|
|
74
|
+
'color(display-p3 0.473 0.281 0.687)',
|
|
75
|
+
'color(display-p3 0.234 0.132 0.363)',
|
|
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
|
+
'#18111b',
|
|
83
|
+
'#1e1523',
|
|
84
|
+
'#301c3b',
|
|
85
|
+
'#3d224e',
|
|
86
|
+
'#48295c',
|
|
87
|
+
'#54346b',
|
|
88
|
+
'#664282',
|
|
89
|
+
'#8457aa',
|
|
90
|
+
'#8e4ec6',
|
|
91
|
+
'#9a5cd0',
|
|
92
|
+
'#d19dff',
|
|
93
|
+
'#ecd9fa',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#b412f90b',
|
|
97
|
+
'#b744f714',
|
|
98
|
+
'#c150ff2d',
|
|
99
|
+
'#bb53fd42',
|
|
100
|
+
'#be5cfd51',
|
|
101
|
+
'#c16dfd61',
|
|
102
|
+
'#c378fd7a',
|
|
103
|
+
'#c47effa4',
|
|
104
|
+
'#b661ffc2',
|
|
105
|
+
'#bc6fffcd',
|
|
106
|
+
'#d19dff',
|
|
107
|
+
'#f1ddfffa',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.09 0.068 0.103)',
|
|
113
|
+
'color(display-p3 0.113 0.082 0.134)',
|
|
114
|
+
'color(display-p3 0.175 0.112 0.224)',
|
|
115
|
+
'color(display-p3 0.224 0.137 0.297)',
|
|
116
|
+
'color(display-p3 0.264 0.167 0.349)',
|
|
117
|
+
'color(display-p3 0.311 0.208 0.406)',
|
|
118
|
+
'color(display-p3 0.381 0.266 0.496)',
|
|
119
|
+
'color(display-p3 0.49 0.349 0.649)',
|
|
120
|
+
'color(display-p3 0.523 0.318 0.751)',
|
|
121
|
+
'color(display-p3 0.57 0.373 0.791)',
|
|
122
|
+
'color(display-p3 0.8 0.62 1)',
|
|
123
|
+
'color(display-p3 0.913 0.854 0.971)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.686 0.071 0.996 / 0.038)',
|
|
127
|
+
'color(display-p3 0.722 0.286 0.996 / 0.072)',
|
|
128
|
+
'color(display-p3 0.718 0.349 0.996 / 0.169)',
|
|
129
|
+
'color(display-p3 0.702 0.353 1 / 0.248)',
|
|
130
|
+
'color(display-p3 0.718 0.404 1 / 0.303)',
|
|
131
|
+
'color(display-p3 0.733 0.455 1 / 0.366)',
|
|
132
|
+
'color(display-p3 0.753 0.506 1 / 0.458)',
|
|
133
|
+
'color(display-p3 0.749 0.522 1 / 0.622)',
|
|
134
|
+
'color(display-p3 0.686 0.408 1 / 0.736)',
|
|
135
|
+
'color(display-p3 0.71 0.459 1 / 0.778)',
|
|
136
|
+
'color(display-p3 0.8 0.62 1)',
|
|
137
|
+
'color(display-p3 0.913 0.854 0.971)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|