@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/cyan.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "cyan";
|
|
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/cyan.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'cyan',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#eff9facc',
|
|
10
|
+
p3: 'color(display-p3 0.9412 0.9765 0.9804 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#11252d80',
|
|
14
|
+
p3: 'color(display-p3 0.0784 0.1412 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
|
+
'#fafdfe',
|
|
21
|
+
'#f2fafb',
|
|
22
|
+
'#def7f9',
|
|
23
|
+
'#caf1f6',
|
|
24
|
+
'#b5e9f0',
|
|
25
|
+
'#9ddde7',
|
|
26
|
+
'#7dcedc',
|
|
27
|
+
'#3db9cf',
|
|
28
|
+
'#00a2c7',
|
|
29
|
+
'#0797b9',
|
|
30
|
+
'#107d98',
|
|
31
|
+
'#0d3c48',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#0099cc05',
|
|
35
|
+
'#009db10d',
|
|
36
|
+
'#00c2d121',
|
|
37
|
+
'#00bcd435',
|
|
38
|
+
'#01b4cc4a',
|
|
39
|
+
'#00a7c162',
|
|
40
|
+
'#009fbb82',
|
|
41
|
+
'#00a3c0c2',
|
|
42
|
+
'#00a2c7',
|
|
43
|
+
'#0094b7f8',
|
|
44
|
+
'#007491ef',
|
|
45
|
+
'#00323ef2',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.982 0.992 0.996)',
|
|
51
|
+
'color(display-p3 0.955 0.981 0.984)',
|
|
52
|
+
'color(display-p3 0.888 0.965 0.975)',
|
|
53
|
+
'color(display-p3 0.821 0.941 0.959)',
|
|
54
|
+
'color(display-p3 0.751 0.907 0.935)',
|
|
55
|
+
'color(display-p3 0.671 0.862 0.9)',
|
|
56
|
+
'color(display-p3 0.564 0.8 0.854)',
|
|
57
|
+
'color(display-p3 0.388 0.715 0.798)',
|
|
58
|
+
'color(display-p3 0.282 0.627 0.765)',
|
|
59
|
+
'color(display-p3 0.264 0.583 0.71)',
|
|
60
|
+
'color(display-p3 0.08 0.48 0.63)',
|
|
61
|
+
'color(display-p3 0.108 0.232 0.277)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.02 0.608 0.804 / 0.02)',
|
|
65
|
+
'color(display-p3 0.02 0.557 0.647 / 0.044)',
|
|
66
|
+
'color(display-p3 0.004 0.694 0.796 / 0.114)',
|
|
67
|
+
'color(display-p3 0.004 0.678 0.784 / 0.181)',
|
|
68
|
+
'color(display-p3 0.004 0.624 0.733 / 0.248)',
|
|
69
|
+
'color(display-p3 0.004 0.584 0.706 / 0.33)',
|
|
70
|
+
'color(display-p3 0.004 0.541 0.667 / 0.436)',
|
|
71
|
+
'color(display-p3 0 0.533 0.667 / 0.612)',
|
|
72
|
+
'color(display-p3 0 0.482 0.675 / 0.718)',
|
|
73
|
+
'color(display-p3 0 0.435 0.608 / 0.738)',
|
|
74
|
+
'color(display-p3 0.08 0.48 0.63)',
|
|
75
|
+
'color(display-p3 0.108 0.232 0.277)',
|
|
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
|
+
'#0b161a',
|
|
83
|
+
'#101b20',
|
|
84
|
+
'#082c36',
|
|
85
|
+
'#003848',
|
|
86
|
+
'#004558',
|
|
87
|
+
'#045468',
|
|
88
|
+
'#12677e',
|
|
89
|
+
'#11809c',
|
|
90
|
+
'#00a2c7',
|
|
91
|
+
'#23afd0',
|
|
92
|
+
'#4ccce6',
|
|
93
|
+
'#b6ecf7',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#0091f70a',
|
|
97
|
+
'#02a7f211',
|
|
98
|
+
'#00befd28',
|
|
99
|
+
'#00baff3b',
|
|
100
|
+
'#00befd4d',
|
|
101
|
+
'#00c7fd5e',
|
|
102
|
+
'#14cdff75',
|
|
103
|
+
'#11cfff95',
|
|
104
|
+
'#00cfffc3',
|
|
105
|
+
'#28d6ffcd',
|
|
106
|
+
'#52e1fee5',
|
|
107
|
+
'#bbf3fef7',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.053 0.085 0.098)',
|
|
113
|
+
'color(display-p3 0.072 0.105 0.122)',
|
|
114
|
+
'color(display-p3 0.073 0.168 0.209)',
|
|
115
|
+
'color(display-p3 0.063 0.216 0.277)',
|
|
116
|
+
'color(display-p3 0.091 0.267 0.336)',
|
|
117
|
+
'color(display-p3 0.137 0.324 0.4)',
|
|
118
|
+
'color(display-p3 0.186 0.398 0.484)',
|
|
119
|
+
'color(display-p3 0.23 0.496 0.6)',
|
|
120
|
+
'color(display-p3 0.282 0.627 0.765)',
|
|
121
|
+
'color(display-p3 0.331 0.675 0.801)',
|
|
122
|
+
'color(display-p3 0.446 0.79 0.887)',
|
|
123
|
+
'color(display-p3 0.757 0.919 0.962)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0.647 0.992 / 0.034)',
|
|
127
|
+
'color(display-p3 0.133 0.733 1 / 0.059)',
|
|
128
|
+
'color(display-p3 0.122 0.741 0.996 / 0.152)',
|
|
129
|
+
'color(display-p3 0.051 0.725 1 / 0.227)',
|
|
130
|
+
'color(display-p3 0.149 0.757 1 / 0.29)',
|
|
131
|
+
'color(display-p3 0.267 0.792 1 / 0.358)',
|
|
132
|
+
'color(display-p3 0.333 0.808 1 / 0.446)',
|
|
133
|
+
'color(display-p3 0.357 0.816 1 / 0.572)',
|
|
134
|
+
'color(display-p3 0.357 0.82 1 / 0.748)',
|
|
135
|
+
'color(display-p3 0.4 0.839 1 / 0.786)',
|
|
136
|
+
'color(display-p3 0.446 0.79 0.887)',
|
|
137
|
+
'color(display-p3 0.757 0.919 0.962)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/gold.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "gold";
|
|
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/gold.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'gold',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#f9f8efcc',
|
|
10
|
+
p3: 'color(display-p3 0.9765 0.9725 0.9412 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#25231d80',
|
|
14
|
+
p3: 'color(display-p3 0.1412 0.1333 0.1098 / 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
|
+
'#faf9f2',
|
|
22
|
+
'#f2f0e7',
|
|
23
|
+
'#eae6db',
|
|
24
|
+
'#e1dccf',
|
|
25
|
+
'#d8d0bf',
|
|
26
|
+
'#cbc0aa',
|
|
27
|
+
'#b9a88d',
|
|
28
|
+
'#978365',
|
|
29
|
+
'#8c7a5e',
|
|
30
|
+
'#71624b',
|
|
31
|
+
'#3b352b',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#55550003',
|
|
35
|
+
'#9d8a000d',
|
|
36
|
+
'#75600018',
|
|
37
|
+
'#6b4e0024',
|
|
38
|
+
'#60460030',
|
|
39
|
+
'#64440040',
|
|
40
|
+
'#63420055',
|
|
41
|
+
'#633d0072',
|
|
42
|
+
'#5332009a',
|
|
43
|
+
'#492d00a1',
|
|
44
|
+
'#362100b4',
|
|
45
|
+
'#130c00d4',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.992 0.992 0.989)',
|
|
51
|
+
'color(display-p3 0.98 0.976 0.953)',
|
|
52
|
+
'color(display-p3 0.947 0.94 0.909)',
|
|
53
|
+
'color(display-p3 0.914 0.904 0.865)',
|
|
54
|
+
'color(display-p3 0.88 0.865 0.816)',
|
|
55
|
+
'color(display-p3 0.84 0.818 0.756)',
|
|
56
|
+
'color(display-p3 0.788 0.753 0.677)',
|
|
57
|
+
'color(display-p3 0.715 0.66 0.565)',
|
|
58
|
+
'color(display-p3 0.579 0.517 0.41)',
|
|
59
|
+
'color(display-p3 0.538 0.479 0.38)',
|
|
60
|
+
'color(display-p3 0.433 0.386 0.305)',
|
|
61
|
+
'color(display-p3 0.227 0.209 0.173)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.349 0.349 0.024 / 0.012)',
|
|
65
|
+
'color(display-p3 0.592 0.514 0.024 / 0.048)',
|
|
66
|
+
'color(display-p3 0.4 0.357 0.012 / 0.091)',
|
|
67
|
+
'color(display-p3 0.357 0.298 0.008 / 0.134)',
|
|
68
|
+
'color(display-p3 0.345 0.282 0.004 / 0.185)',
|
|
69
|
+
'color(display-p3 0.341 0.263 0.004 / 0.244)',
|
|
70
|
+
'color(display-p3 0.345 0.235 0.004 / 0.322)',
|
|
71
|
+
'color(display-p3 0.345 0.22 0.004 / 0.436)',
|
|
72
|
+
'color(display-p3 0.286 0.18 0 / 0.589)',
|
|
73
|
+
'color(display-p3 0.255 0.161 0 / 0.62)',
|
|
74
|
+
'color(display-p3 0.433 0.386 0.305)',
|
|
75
|
+
'color(display-p3 0.227 0.209 0.173)',
|
|
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
|
+
'#121211',
|
|
83
|
+
'#1b1a17',
|
|
84
|
+
'#24231f',
|
|
85
|
+
'#2d2b26',
|
|
86
|
+
'#38352e',
|
|
87
|
+
'#444039',
|
|
88
|
+
'#544f46',
|
|
89
|
+
'#696256',
|
|
90
|
+
'#978365',
|
|
91
|
+
'#a39073',
|
|
92
|
+
'#cbb99f',
|
|
93
|
+
'#e8e2d9',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#91911102',
|
|
97
|
+
'#f9e29d0b',
|
|
98
|
+
'#f8ecbb15',
|
|
99
|
+
'#ffeec41e',
|
|
100
|
+
'#feecc22a',
|
|
101
|
+
'#feebcb37',
|
|
102
|
+
'#ffedcd48',
|
|
103
|
+
'#fdeaca5f',
|
|
104
|
+
'#ffdba690',
|
|
105
|
+
'#fedfb09d',
|
|
106
|
+
'#fee7c6c8',
|
|
107
|
+
'#fef7ede7',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.071 0.071 0.067)',
|
|
113
|
+
'color(display-p3 0.104 0.101 0.09)',
|
|
114
|
+
'color(display-p3 0.141 0.136 0.122)',
|
|
115
|
+
'color(display-p3 0.177 0.17 0.152)',
|
|
116
|
+
'color(display-p3 0.217 0.207 0.185)',
|
|
117
|
+
'color(display-p3 0.265 0.252 0.225)',
|
|
118
|
+
'color(display-p3 0.327 0.31 0.277)',
|
|
119
|
+
'color(display-p3 0.407 0.384 0.342)',
|
|
120
|
+
'color(display-p3 0.579 0.517 0.41)',
|
|
121
|
+
'color(display-p3 0.628 0.566 0.463)',
|
|
122
|
+
'color(display-p3 0.784 0.728 0.635)',
|
|
123
|
+
'color(display-p3 0.906 0.887 0.855)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.855 0.855 0.071 / 0.005)',
|
|
127
|
+
'color(display-p3 0.98 0.89 0.616 / 0.043)',
|
|
128
|
+
'color(display-p3 1 0.949 0.753 / 0.08)',
|
|
129
|
+
'color(display-p3 1 0.933 0.8 / 0.118)',
|
|
130
|
+
'color(display-p3 1 0.949 0.804 / 0.16)',
|
|
131
|
+
'color(display-p3 1 0.925 0.8 / 0.215)',
|
|
132
|
+
'color(display-p3 1 0.945 0.831 / 0.278)',
|
|
133
|
+
'color(display-p3 1 0.937 0.82 / 0.366)',
|
|
134
|
+
'color(display-p3 0.996 0.882 0.69 / 0.551)',
|
|
135
|
+
'color(display-p3 1 0.894 0.725 / 0.601)',
|
|
136
|
+
'color(display-p3 0.784 0.728 0.635)',
|
|
137
|
+
'color(display-p3 0.906 0.887 0.855)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|