@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/sage.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "sage";
|
|
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/sage.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'sage',
|
|
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: '#1e201f80',
|
|
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
|
+
'#fbfdfc',
|
|
21
|
+
'#f7f9f8',
|
|
22
|
+
'#eef1f0',
|
|
23
|
+
'#e6e9e8',
|
|
24
|
+
'#dfe2e0',
|
|
25
|
+
'#d7dad9',
|
|
26
|
+
'#cbcfcd',
|
|
27
|
+
'#b8bcba',
|
|
28
|
+
'#868e8b',
|
|
29
|
+
'#7c8481',
|
|
30
|
+
'#5f6563',
|
|
31
|
+
'#1a211e',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#00804004',
|
|
35
|
+
'#00402008',
|
|
36
|
+
'#002d1e11',
|
|
37
|
+
'#001f1519',
|
|
38
|
+
'#00180820',
|
|
39
|
+
'#00140d28',
|
|
40
|
+
'#00140a34',
|
|
41
|
+
'#000f0847',
|
|
42
|
+
'#00110b79',
|
|
43
|
+
'#00100a83',
|
|
44
|
+
'#000a07a0',
|
|
45
|
+
'#000805e5',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.986 0.992 0.988)',
|
|
51
|
+
'color(display-p3 0.97 0.977 0.974)',
|
|
52
|
+
'color(display-p3 0.935 0.944 0.94)',
|
|
53
|
+
'color(display-p3 0.904 0.913 0.909)',
|
|
54
|
+
'color(display-p3 0.875 0.885 0.88)',
|
|
55
|
+
'color(display-p3 0.844 0.854 0.849)',
|
|
56
|
+
'color(display-p3 0.8 0.811 0.806)',
|
|
57
|
+
'color(display-p3 0.725 0.738 0.732)',
|
|
58
|
+
'color(display-p3 0.531 0.556 0.546)',
|
|
59
|
+
'color(display-p3 0.492 0.515 0.506)',
|
|
60
|
+
'color(display-p3 0.377 0.395 0.389)',
|
|
61
|
+
'color(display-p3 0.107 0.129 0.118)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.024 0.514 0.267 / 0.016)',
|
|
65
|
+
'color(display-p3 0.02 0.267 0.145 / 0.032)',
|
|
66
|
+
'color(display-p3 0.008 0.184 0.125 / 0.067)',
|
|
67
|
+
'color(display-p3 0.012 0.094 0.051 / 0.095)',
|
|
68
|
+
'color(display-p3 0.008 0.098 0.035 / 0.126)',
|
|
69
|
+
'color(display-p3 0.004 0.078 0.027 / 0.157)',
|
|
70
|
+
'color(display-p3 0 0.059 0.039 / 0.2)',
|
|
71
|
+
'color(display-p3 0.004 0.047 0.031 / 0.275)',
|
|
72
|
+
'color(display-p3 0.004 0.059 0.035 / 0.471)',
|
|
73
|
+
'color(display-p3 0 0.047 0.031 / 0.51)',
|
|
74
|
+
'color(display-p3 0 0.031 0.02 / 0.624)',
|
|
75
|
+
'color(display-p3 0 0.027 0.012 / 0.895)',
|
|
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
|
+
'#101211',
|
|
83
|
+
'#171918',
|
|
84
|
+
'#202221',
|
|
85
|
+
'#272a29',
|
|
86
|
+
'#2e3130',
|
|
87
|
+
'#373b39',
|
|
88
|
+
'#444947',
|
|
89
|
+
'#5b625f',
|
|
90
|
+
'#63706b',
|
|
91
|
+
'#717d79',
|
|
92
|
+
'#adb5b2',
|
|
93
|
+
'#eceeed',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#00000000',
|
|
97
|
+
'#f0f2f108',
|
|
98
|
+
'#f3f5f412',
|
|
99
|
+
'#f2fefd1a',
|
|
100
|
+
'#f1fbfa22',
|
|
101
|
+
'#edfbf42d',
|
|
102
|
+
'#edfcf73c',
|
|
103
|
+
'#ebfdf657',
|
|
104
|
+
'#dffdf266',
|
|
105
|
+
'#e5fdf674',
|
|
106
|
+
'#f4fefbb0',
|
|
107
|
+
'#fdfffeed',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.064 0.07 0.067)',
|
|
113
|
+
'color(display-p3 0.092 0.098 0.094)',
|
|
114
|
+
'color(display-p3 0.128 0.135 0.131)',
|
|
115
|
+
'color(display-p3 0.155 0.164 0.159)',
|
|
116
|
+
'color(display-p3 0.183 0.193 0.188)',
|
|
117
|
+
'color(display-p3 0.218 0.23 0.224)',
|
|
118
|
+
'color(display-p3 0.269 0.285 0.277)',
|
|
119
|
+
'color(display-p3 0.362 0.382 0.373)',
|
|
120
|
+
'color(display-p3 0.398 0.438 0.421)',
|
|
121
|
+
'color(display-p3 0.453 0.49 0.474)',
|
|
122
|
+
'color(display-p3 0.685 0.709 0.697)',
|
|
123
|
+
'color(display-p3 0.927 0.933 0.93)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0 0 / 0)',
|
|
127
|
+
'color(display-p3 0.976 0.988 0.984 / 0.03)',
|
|
128
|
+
'color(display-p3 0.992 0.945 0.941 / 0.072)',
|
|
129
|
+
'color(display-p3 0.988 0.996 0.992 / 0.102)',
|
|
130
|
+
'color(display-p3 0.992 1 0.996 / 0.131)',
|
|
131
|
+
'color(display-p3 0.973 1 0.976 / 0.173)',
|
|
132
|
+
'color(display-p3 0.957 1 0.976 / 0.233)',
|
|
133
|
+
'color(display-p3 0.957 1 0.984 / 0.334)',
|
|
134
|
+
'color(display-p3 0.902 1 0.957 / 0.397)',
|
|
135
|
+
'color(display-p3 0.929 1 0.973 / 0.452)',
|
|
136
|
+
'color(display-p3 0.969 1 0.988 / 0.688)',
|
|
137
|
+
'color(display-p3 0.992 1 0.996 / 0.929)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/sand.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "sand";
|
|
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/sand.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'sand',
|
|
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: '#21212080',
|
|
14
|
+
p3: 'color(display-p3 0.1255 0.1255 0.1255 / 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
|
+
'#fdfdfc',
|
|
21
|
+
'#f9f9f8',
|
|
22
|
+
'#f1f0ef',
|
|
23
|
+
'#e9e8e6',
|
|
24
|
+
'#e2e1de',
|
|
25
|
+
'#dad9d6',
|
|
26
|
+
'#cfceca',
|
|
27
|
+
'#bcbbb5',
|
|
28
|
+
'#8d8d86',
|
|
29
|
+
'#82827c',
|
|
30
|
+
'#63635e',
|
|
31
|
+
'#21201c',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#55550003',
|
|
35
|
+
'#25250007',
|
|
36
|
+
'#20100010',
|
|
37
|
+
'#1f150019',
|
|
38
|
+
'#1f180021',
|
|
39
|
+
'#19130029',
|
|
40
|
+
'#19140035',
|
|
41
|
+
'#1915014a',
|
|
42
|
+
'#0f0f0079',
|
|
43
|
+
'#0c0c0083',
|
|
44
|
+
'#080800a1',
|
|
45
|
+
'#060500e3',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.992 0.992 0.989)',
|
|
51
|
+
'color(display-p3 0.977 0.977 0.973)',
|
|
52
|
+
'color(display-p3 0.943 0.942 0.936)',
|
|
53
|
+
'color(display-p3 0.913 0.912 0.903)',
|
|
54
|
+
'color(display-p3 0.885 0.883 0.873)',
|
|
55
|
+
'color(display-p3 0.854 0.852 0.839)',
|
|
56
|
+
'color(display-p3 0.813 0.81 0.794)',
|
|
57
|
+
'color(display-p3 0.738 0.734 0.713)',
|
|
58
|
+
'color(display-p3 0.553 0.553 0.528)',
|
|
59
|
+
'color(display-p3 0.511 0.511 0.488)',
|
|
60
|
+
'color(display-p3 0.388 0.388 0.37)',
|
|
61
|
+
'color(display-p3 0.129 0.126 0.111)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.349 0.349 0.024 / 0.012)',
|
|
65
|
+
'color(display-p3 0.161 0.161 0.024 / 0.028)',
|
|
66
|
+
'color(display-p3 0.067 0.067 0.008 / 0.063)',
|
|
67
|
+
'color(display-p3 0.129 0.129 0.012 / 0.099)',
|
|
68
|
+
'color(display-p3 0.098 0.067 0.008 / 0.126)',
|
|
69
|
+
'color(display-p3 0.102 0.075 0.004 / 0.161)',
|
|
70
|
+
'color(display-p3 0.098 0.098 0.004 / 0.208)',
|
|
71
|
+
'color(display-p3 0.086 0.075 0.004 / 0.287)',
|
|
72
|
+
'color(display-p3 0.051 0.051 0.004 / 0.471)',
|
|
73
|
+
'color(display-p3 0.047 0.047 0 / 0.514)',
|
|
74
|
+
'color(display-p3 0.031 0.031 0 / 0.632)',
|
|
75
|
+
'color(display-p3 0.024 0.02 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
|
+
'#111110',
|
|
83
|
+
'#191918',
|
|
84
|
+
'#222221',
|
|
85
|
+
'#2a2a28',
|
|
86
|
+
'#31312e',
|
|
87
|
+
'#3b3a37',
|
|
88
|
+
'#494844',
|
|
89
|
+
'#62605b',
|
|
90
|
+
'#6f6d66',
|
|
91
|
+
'#7c7b74',
|
|
92
|
+
'#b5b3ad',
|
|
93
|
+
'#eeeeec',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#00000000',
|
|
97
|
+
'#f4f4f309',
|
|
98
|
+
'#f6f6f513',
|
|
99
|
+
'#fefef31b',
|
|
100
|
+
'#fbfbeb23',
|
|
101
|
+
'#fffaed2d',
|
|
102
|
+
'#fffbed3c',
|
|
103
|
+
'#fff9eb57',
|
|
104
|
+
'#fffae965',
|
|
105
|
+
'#fffdee73',
|
|
106
|
+
'#fffcf4b0',
|
|
107
|
+
'#fffffded',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.067 0.067 0.063)',
|
|
113
|
+
'color(display-p3 0.098 0.098 0.094)',
|
|
114
|
+
'color(display-p3 0.135 0.135 0.129)',
|
|
115
|
+
'color(display-p3 0.164 0.163 0.156)',
|
|
116
|
+
'color(display-p3 0.193 0.192 0.183)',
|
|
117
|
+
'color(display-p3 0.23 0.229 0.217)',
|
|
118
|
+
'color(display-p3 0.285 0.282 0.267)',
|
|
119
|
+
'color(display-p3 0.384 0.378 0.357)',
|
|
120
|
+
'color(display-p3 0.434 0.428 0.403)',
|
|
121
|
+
'color(display-p3 0.487 0.481 0.456)',
|
|
122
|
+
'color(display-p3 0.707 0.703 0.68)',
|
|
123
|
+
'color(display-p3 0.933 0.933 0.926)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0 0 / 0)',
|
|
127
|
+
'color(display-p3 0.992 0.992 0.988 / 0.034)',
|
|
128
|
+
'color(display-p3 0.996 0.996 0.992 / 0.072)',
|
|
129
|
+
'color(display-p3 0.992 0.992 0.953 / 0.106)',
|
|
130
|
+
'color(display-p3 1 1 0.965 / 0.135)',
|
|
131
|
+
'color(display-p3 1 0.976 0.929 / 0.177)',
|
|
132
|
+
'color(display-p3 1 0.984 0.929 / 0.236)',
|
|
133
|
+
'color(display-p3 1 0.976 0.925 / 0.341)',
|
|
134
|
+
'color(display-p3 1 0.98 0.925 / 0.395)',
|
|
135
|
+
'color(display-p3 1 0.992 0.933 / 0.45)',
|
|
136
|
+
'color(display-p3 1 0.996 0.961 / 0.685)',
|
|
137
|
+
'color(display-p3 1 1 0.992 / 0.929)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|