@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/teal.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "teal";
|
|
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/teal.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'teal',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#f0faf8cc',
|
|
10
|
+
p3: 'color(display-p3 0.9451 0.9804 0.9725 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#13272580',
|
|
14
|
+
p3: 'color(display-p3 0.0863 0.149 0.1412 / 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
|
+
'#fafefd',
|
|
21
|
+
'#f3fbf9',
|
|
22
|
+
'#e0f8f3',
|
|
23
|
+
'#ccf3ea',
|
|
24
|
+
'#b8eae0',
|
|
25
|
+
'#a1ded2',
|
|
26
|
+
'#83cdc1',
|
|
27
|
+
'#53b9ab',
|
|
28
|
+
'#12a594',
|
|
29
|
+
'#0d9b8a',
|
|
30
|
+
'#008573',
|
|
31
|
+
'#0d3d38',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#00cc9905',
|
|
35
|
+
'#00aa800c',
|
|
36
|
+
'#00c69d1f',
|
|
37
|
+
'#00c39633',
|
|
38
|
+
'#00b49047',
|
|
39
|
+
'#00a6855e',
|
|
40
|
+
'#0099807c',
|
|
41
|
+
'#009783ac',
|
|
42
|
+
'#009e8ced',
|
|
43
|
+
'#009684f2',
|
|
44
|
+
'#008573',
|
|
45
|
+
'#00332df2',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.983 0.996 0.992)',
|
|
51
|
+
'color(display-p3 0.958 0.983 0.976)',
|
|
52
|
+
'color(display-p3 0.895 0.971 0.952)',
|
|
53
|
+
'color(display-p3 0.831 0.949 0.92)',
|
|
54
|
+
'color(display-p3 0.761 0.914 0.878)',
|
|
55
|
+
'color(display-p3 0.682 0.864 0.825)',
|
|
56
|
+
'color(display-p3 0.581 0.798 0.756)',
|
|
57
|
+
'color(display-p3 0.433 0.716 0.671)',
|
|
58
|
+
'color(display-p3 0.297 0.637 0.581)',
|
|
59
|
+
'color(display-p3 0.275 0.599 0.542)',
|
|
60
|
+
'color(display-p3 0.08 0.5 0.43)',
|
|
61
|
+
'color(display-p3 0.11 0.235 0.219)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.024 0.757 0.514 / 0.016)',
|
|
65
|
+
'color(display-p3 0.02 0.647 0.467 / 0.044)',
|
|
66
|
+
'color(display-p3 0.004 0.741 0.557 / 0.106)',
|
|
67
|
+
'color(display-p3 0.004 0.702 0.537 / 0.169)',
|
|
68
|
+
'color(display-p3 0.004 0.643 0.494 / 0.24)',
|
|
69
|
+
'color(display-p3 0.004 0.569 0.447 / 0.318)',
|
|
70
|
+
'color(display-p3 0.004 0.518 0.424 / 0.42)',
|
|
71
|
+
'color(display-p3 0 0.506 0.424 / 0.569)',
|
|
72
|
+
'color(display-p3 0 0.482 0.404 / 0.702)',
|
|
73
|
+
'color(display-p3 0 0.451 0.369 / 0.726)',
|
|
74
|
+
'color(display-p3 0.08 0.5 0.43)',
|
|
75
|
+
'color(display-p3 0.11 0.235 0.219)',
|
|
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
|
+
'#0d1514',
|
|
83
|
+
'#111c1b',
|
|
84
|
+
'#0d2d2a',
|
|
85
|
+
'#023b37',
|
|
86
|
+
'#084843',
|
|
87
|
+
'#145750',
|
|
88
|
+
'#1c6961',
|
|
89
|
+
'#207e73',
|
|
90
|
+
'#12a594',
|
|
91
|
+
'#0eb39e',
|
|
92
|
+
'#0bd8b6',
|
|
93
|
+
'#adf0dd',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#00deab05',
|
|
97
|
+
'#12fbe60c',
|
|
98
|
+
'#00ffe61e',
|
|
99
|
+
'#00ffe92d',
|
|
100
|
+
'#00ffea3b',
|
|
101
|
+
'#1cffe84b',
|
|
102
|
+
'#2efde85f',
|
|
103
|
+
'#32ffe775',
|
|
104
|
+
'#13ffe49f',
|
|
105
|
+
'#0dffe0ae',
|
|
106
|
+
'#0afed5d6',
|
|
107
|
+
'#b8ffebef',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.059 0.083 0.079)',
|
|
113
|
+
'color(display-p3 0.075 0.11 0.107)',
|
|
114
|
+
'color(display-p3 0.087 0.175 0.165)',
|
|
115
|
+
'color(display-p3 0.087 0.227 0.214)',
|
|
116
|
+
'color(display-p3 0.12 0.277 0.261)',
|
|
117
|
+
'color(display-p3 0.162 0.335 0.314)',
|
|
118
|
+
'color(display-p3 0.205 0.406 0.379)',
|
|
119
|
+
'color(display-p3 0.245 0.489 0.453)',
|
|
120
|
+
'color(display-p3 0.297 0.637 0.581)',
|
|
121
|
+
'color(display-p3 0.319 0.69 0.62)',
|
|
122
|
+
'color(display-p3 0.388 0.835 0.719)',
|
|
123
|
+
'color(display-p3 0.734 0.934 0.87)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0.992 0.761 / 0.017)',
|
|
127
|
+
'color(display-p3 0.235 0.988 0.902 / 0.047)',
|
|
128
|
+
'color(display-p3 0.235 1 0.898 / 0.118)',
|
|
129
|
+
'color(display-p3 0.18 0.996 0.929 / 0.173)',
|
|
130
|
+
'color(display-p3 0.31 1 0.933 / 0.227)',
|
|
131
|
+
'color(display-p3 0.396 1 0.933 / 0.286)',
|
|
132
|
+
'color(display-p3 0.443 1 0.925 / 0.366)',
|
|
133
|
+
'color(display-p3 0.459 1 0.925 / 0.454)',
|
|
134
|
+
'color(display-p3 0.443 0.996 0.906 / 0.61)',
|
|
135
|
+
'color(display-p3 0.439 0.996 0.89 / 0.669)',
|
|
136
|
+
'color(display-p3 0.388 0.835 0.719)',
|
|
137
|
+
'color(display-p3 0.734 0.934 0.87)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/tomato.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "tomato";
|
|
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/tomato.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'tomato',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#fff6f5cc',
|
|
10
|
+
p3: 'color(display-p3 0.9922 0.9647 0.9608 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#2d191580',
|
|
14
|
+
p3: 'color(display-p3 0.1569 0.0941 0.0784 / 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
|
+
'#fffcfc',
|
|
21
|
+
'#fff8f7',
|
|
22
|
+
'#feebe7',
|
|
23
|
+
'#ffdcd3',
|
|
24
|
+
'#ffcdc2',
|
|
25
|
+
'#fdbdaf',
|
|
26
|
+
'#f5a898',
|
|
27
|
+
'#ec8e7b',
|
|
28
|
+
'#e54d2e',
|
|
29
|
+
'#dd4425',
|
|
30
|
+
'#d13415',
|
|
31
|
+
'#5c271f',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#ff000003',
|
|
35
|
+
'#ff200008',
|
|
36
|
+
'#f52b0018',
|
|
37
|
+
'#ff35002c',
|
|
38
|
+
'#ff2e003d',
|
|
39
|
+
'#f92d0050',
|
|
40
|
+
'#e7280067',
|
|
41
|
+
'#db250084',
|
|
42
|
+
'#df2600d1',
|
|
43
|
+
'#d72400da',
|
|
44
|
+
'#cd2200ea',
|
|
45
|
+
'#460900e0',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.998 0.989 0.988)',
|
|
51
|
+
'color(display-p3 0.994 0.974 0.969)',
|
|
52
|
+
'color(display-p3 0.985 0.924 0.909)',
|
|
53
|
+
'color(display-p3 0.996 0.868 0.835)',
|
|
54
|
+
'color(display-p3 0.98 0.812 0.77)',
|
|
55
|
+
'color(display-p3 0.953 0.75 0.698)',
|
|
56
|
+
'color(display-p3 0.917 0.673 0.611)',
|
|
57
|
+
'color(display-p3 0.875 0.575 0.502)',
|
|
58
|
+
'color(display-p3 0.831 0.345 0.231)',
|
|
59
|
+
'color(display-p3 0.802 0.313 0.2)',
|
|
60
|
+
'color(display-p3 0.755 0.259 0.152)',
|
|
61
|
+
'color(display-p3 0.335 0.165 0.132)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.675 0.024 0.024 / 0.012)',
|
|
65
|
+
'color(display-p3 0.757 0.145 0.02 / 0.032)',
|
|
66
|
+
'color(display-p3 0.831 0.184 0.012 / 0.091)',
|
|
67
|
+
'color(display-p3 0.976 0.192 0.004 / 0.165)',
|
|
68
|
+
'color(display-p3 0.918 0.192 0.004 / 0.232)',
|
|
69
|
+
'color(display-p3 0.847 0.173 0.004 / 0.302)',
|
|
70
|
+
'color(display-p3 0.788 0.165 0.004 / 0.389)',
|
|
71
|
+
'color(display-p3 0.749 0.153 0.004 / 0.499)',
|
|
72
|
+
'color(display-p3 0.78 0.149 0 / 0.769)',
|
|
73
|
+
'color(display-p3 0.757 0.141 0 / 0.8)',
|
|
74
|
+
'color(display-p3 0.755 0.259 0.152)',
|
|
75
|
+
'color(display-p3 0.335 0.165 0.132)',
|
|
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
|
+
'#181111',
|
|
83
|
+
'#1f1513',
|
|
84
|
+
'#391714',
|
|
85
|
+
'#4e1511',
|
|
86
|
+
'#5e1c16',
|
|
87
|
+
'#6e2920',
|
|
88
|
+
'#853a2d',
|
|
89
|
+
'#ac4d39',
|
|
90
|
+
'#e54d2e',
|
|
91
|
+
'#ec6142',
|
|
92
|
+
'#ff977d',
|
|
93
|
+
'#fbd3cb',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#f1121208',
|
|
97
|
+
'#ff55330f',
|
|
98
|
+
'#ff35232b',
|
|
99
|
+
'#fd201142',
|
|
100
|
+
'#fe332153',
|
|
101
|
+
'#ff4f3864',
|
|
102
|
+
'#fd644a7d',
|
|
103
|
+
'#fe6d4ea7',
|
|
104
|
+
'#fe5431e4',
|
|
105
|
+
'#ff6847eb',
|
|
106
|
+
'#ff977d',
|
|
107
|
+
'#ffd6cefb',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.09 0.068 0.067)',
|
|
113
|
+
'color(display-p3 0.115 0.084 0.076)',
|
|
114
|
+
'color(display-p3 0.205 0.097 0.083)',
|
|
115
|
+
'color(display-p3 0.282 0.099 0.077)',
|
|
116
|
+
'color(display-p3 0.339 0.129 0.101)',
|
|
117
|
+
'color(display-p3 0.398 0.179 0.141)',
|
|
118
|
+
'color(display-p3 0.487 0.245 0.194)',
|
|
119
|
+
'color(display-p3 0.629 0.322 0.248)',
|
|
120
|
+
'color(display-p3 0.831 0.345 0.231)',
|
|
121
|
+
'color(display-p3 0.862 0.415 0.298)',
|
|
122
|
+
'color(display-p3 1 0.585 0.455)',
|
|
123
|
+
'color(display-p3 0.959 0.833 0.802)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.973 0.071 0.071 / 0.026)',
|
|
127
|
+
'color(display-p3 0.992 0.376 0.224 / 0.051)',
|
|
128
|
+
'color(display-p3 0.996 0.282 0.176 / 0.148)',
|
|
129
|
+
'color(display-p3 1 0.204 0.118 / 0.232)',
|
|
130
|
+
'color(display-p3 1 0.286 0.192 / 0.29)',
|
|
131
|
+
'color(display-p3 1 0.392 0.278 / 0.353)',
|
|
132
|
+
'color(display-p3 1 0.459 0.349 / 0.45)',
|
|
133
|
+
'color(display-p3 1 0.49 0.369 / 0.601)',
|
|
134
|
+
'color(display-p3 1 0.408 0.267 / 0.82)',
|
|
135
|
+
'color(display-p3 1 0.478 0.341 / 0.853)',
|
|
136
|
+
'color(display-p3 1 0.585 0.455)',
|
|
137
|
+
'color(display-p3 0.959 0.833 0.802)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|