@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/lime.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "lime";
|
|
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/lime.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'lime',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: '#1d211c',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#f6f9f0cc',
|
|
10
|
+
p3: 'color(display-p3 0.9725 0.9765 0.9412 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#1b211580',
|
|
14
|
+
p3: 'color(display-p3 0.1098 0.1255 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
|
+
'#fcfdfa',
|
|
21
|
+
'#f8faf3',
|
|
22
|
+
'#eef6d6',
|
|
23
|
+
'#e2f0bd',
|
|
24
|
+
'#d3e7a6',
|
|
25
|
+
'#c2da91',
|
|
26
|
+
'#abc978',
|
|
27
|
+
'#8db654',
|
|
28
|
+
'#bdee63',
|
|
29
|
+
'#b0e64c',
|
|
30
|
+
'#5c7c2f',
|
|
31
|
+
'#37401c',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#66990005',
|
|
35
|
+
'#6b95000c',
|
|
36
|
+
'#96c80029',
|
|
37
|
+
'#8fc60042',
|
|
38
|
+
'#81bb0059',
|
|
39
|
+
'#72aa006e',
|
|
40
|
+
'#61990087',
|
|
41
|
+
'#559200ab',
|
|
42
|
+
'#93e4009c',
|
|
43
|
+
'#8fdc00b3',
|
|
44
|
+
'#375f00d0',
|
|
45
|
+
'#1e2900e3',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.989 0.992 0.981)',
|
|
51
|
+
'color(display-p3 0.975 0.98 0.954)',
|
|
52
|
+
'color(display-p3 0.939 0.965 0.851)',
|
|
53
|
+
'color(display-p3 0.896 0.94 0.76)',
|
|
54
|
+
'color(display-p3 0.843 0.903 0.678)',
|
|
55
|
+
'color(display-p3 0.778 0.852 0.599)',
|
|
56
|
+
'color(display-p3 0.694 0.784 0.508)',
|
|
57
|
+
'color(display-p3 0.585 0.707 0.378)',
|
|
58
|
+
'color(display-p3 0.78 0.928 0.466)',
|
|
59
|
+
'color(display-p3 0.734 0.896 0.397)',
|
|
60
|
+
'color(display-p3 0.386 0.482 0.227)',
|
|
61
|
+
'color(display-p3 0.222 0.25 0.128)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.412 0.608 0.02 / 0.02)',
|
|
65
|
+
'color(display-p3 0.514 0.592 0.024 / 0.048)',
|
|
66
|
+
'color(display-p3 0.584 0.765 0.008 / 0.15)',
|
|
67
|
+
'color(display-p3 0.561 0.757 0.004 / 0.24)',
|
|
68
|
+
'color(display-p3 0.514 0.698 0.004 / 0.322)',
|
|
69
|
+
'color(display-p3 0.443 0.627 0 / 0.4)',
|
|
70
|
+
'color(display-p3 0.376 0.561 0.004 / 0.491)',
|
|
71
|
+
'color(display-p3 0.333 0.529 0 / 0.624)',
|
|
72
|
+
'color(display-p3 0.588 0.867 0 / 0.534)',
|
|
73
|
+
'color(display-p3 0.561 0.827 0 / 0.604)',
|
|
74
|
+
'color(display-p3 0.386 0.482 0.227)',
|
|
75
|
+
'color(display-p3 0.222 0.25 0.128)',
|
|
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
|
+
'#11130c',
|
|
83
|
+
'#151a10',
|
|
84
|
+
'#1f2917',
|
|
85
|
+
'#29371d',
|
|
86
|
+
'#334423',
|
|
87
|
+
'#3d522a',
|
|
88
|
+
'#496231',
|
|
89
|
+
'#577538',
|
|
90
|
+
'#bdee63',
|
|
91
|
+
'#d4ff70',
|
|
92
|
+
'#bde56c',
|
|
93
|
+
'#e3f7ba',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#11bb0003',
|
|
97
|
+
'#78f7000a',
|
|
98
|
+
'#9bfd4c1a',
|
|
99
|
+
'#a7fe5c29',
|
|
100
|
+
'#affe6537',
|
|
101
|
+
'#b2fe6d46',
|
|
102
|
+
'#b6ff6f57',
|
|
103
|
+
'#b6fd6d6c',
|
|
104
|
+
'#caff69ed',
|
|
105
|
+
'#d4ff70',
|
|
106
|
+
'#d1fe77e4',
|
|
107
|
+
'#e9febff7',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.067 0.073 0.048)',
|
|
113
|
+
'color(display-p3 0.086 0.1 0.067)',
|
|
114
|
+
'color(display-p3 0.13 0.16 0.099)',
|
|
115
|
+
'color(display-p3 0.172 0.214 0.126)',
|
|
116
|
+
'color(display-p3 0.213 0.266 0.153)',
|
|
117
|
+
'color(display-p3 0.257 0.321 0.182)',
|
|
118
|
+
'color(display-p3 0.307 0.383 0.215)',
|
|
119
|
+
'color(display-p3 0.365 0.456 0.25)',
|
|
120
|
+
'color(display-p3 0.78 0.928 0.466)',
|
|
121
|
+
'color(display-p3 0.865 0.995 0.519)',
|
|
122
|
+
'color(display-p3 0.771 0.893 0.485)',
|
|
123
|
+
'color(display-p3 0.905 0.966 0.753)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.067 0.941 0 / 0.009)',
|
|
127
|
+
'color(display-p3 0.584 0.996 0.071 / 0.038)',
|
|
128
|
+
'color(display-p3 0.69 1 0.38 / 0.101)',
|
|
129
|
+
'color(display-p3 0.729 1 0.435 / 0.16)',
|
|
130
|
+
'color(display-p3 0.745 1 0.471 / 0.215)',
|
|
131
|
+
'color(display-p3 0.769 1 0.482 / 0.274)',
|
|
132
|
+
'color(display-p3 0.769 1 0.506 / 0.341)',
|
|
133
|
+
'color(display-p3 0.784 1 0.51 / 0.416)',
|
|
134
|
+
'color(display-p3 0.839 1 0.502 / 0.925)',
|
|
135
|
+
'color(display-p3 0.871 1 0.522 / 0.996)',
|
|
136
|
+
'color(display-p3 0.771 0.893 0.485)',
|
|
137
|
+
'color(display-p3 0.905 0.966 0.753)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/mauve.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "mauve";
|
|
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/mauve.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'mauve',
|
|
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: '#22212380',
|
|
14
|
+
p3: 'color(display-p3 0.1333 0.1255 0.1333 / 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
|
+
'#fdfcfd',
|
|
21
|
+
'#faf9fb',
|
|
22
|
+
'#f2eff3',
|
|
23
|
+
'#eae7ec',
|
|
24
|
+
'#e3dfe6',
|
|
25
|
+
'#dbd8e0',
|
|
26
|
+
'#d0cdd7',
|
|
27
|
+
'#bcbac7',
|
|
28
|
+
'#8e8c99',
|
|
29
|
+
'#84828e',
|
|
30
|
+
'#65636d',
|
|
31
|
+
'#211f26',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#55005503',
|
|
35
|
+
'#2b005506',
|
|
36
|
+
'#30004010',
|
|
37
|
+
'#20003618',
|
|
38
|
+
'#20003820',
|
|
39
|
+
'#14003527',
|
|
40
|
+
'#10003332',
|
|
41
|
+
'#08003145',
|
|
42
|
+
'#05001d73',
|
|
43
|
+
'#0500197d',
|
|
44
|
+
'#0400119c',
|
|
45
|
+
'#020008e0',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.991 0.988 0.992)',
|
|
51
|
+
'color(display-p3 0.98 0.976 0.984)',
|
|
52
|
+
'color(display-p3 0.946 0.938 0.952)',
|
|
53
|
+
'color(display-p3 0.915 0.906 0.925)',
|
|
54
|
+
'color(display-p3 0.886 0.876 0.901)',
|
|
55
|
+
'color(display-p3 0.856 0.846 0.875)',
|
|
56
|
+
'color(display-p3 0.814 0.804 0.84)',
|
|
57
|
+
'color(display-p3 0.735 0.728 0.777)',
|
|
58
|
+
'color(display-p3 0.555 0.549 0.596)',
|
|
59
|
+
'color(display-p3 0.514 0.508 0.552)',
|
|
60
|
+
'color(display-p3 0.395 0.388 0.424)',
|
|
61
|
+
'color(display-p3 0.128 0.122 0.147)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.349 0.024 0.349 / 0.012)',
|
|
65
|
+
'color(display-p3 0.184 0.024 0.349 / 0.024)',
|
|
66
|
+
'color(display-p3 0.129 0.008 0.255 / 0.063)',
|
|
67
|
+
'color(display-p3 0.094 0.012 0.216 / 0.095)',
|
|
68
|
+
'color(display-p3 0.098 0.008 0.224 / 0.126)',
|
|
69
|
+
'color(display-p3 0.055 0.004 0.18 / 0.153)',
|
|
70
|
+
'color(display-p3 0.067 0.008 0.184 / 0.197)',
|
|
71
|
+
'color(display-p3 0.02 0.004 0.176 / 0.271)',
|
|
72
|
+
'color(display-p3 0.02 0.004 0.106 / 0.451)',
|
|
73
|
+
'color(display-p3 0.012 0.004 0.09 / 0.491)',
|
|
74
|
+
'color(display-p3 0.016 0 0.059 / 0.612)',
|
|
75
|
+
'color(display-p3 0.008 0 0.027 / 0.879)',
|
|
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
|
+
'#121113',
|
|
83
|
+
'#1a191b',
|
|
84
|
+
'#232225',
|
|
85
|
+
'#2b292d',
|
|
86
|
+
'#323035',
|
|
87
|
+
'#3c393f',
|
|
88
|
+
'#49474e',
|
|
89
|
+
'#625f69',
|
|
90
|
+
'#6f6d78',
|
|
91
|
+
'#7c7a85',
|
|
92
|
+
'#b5b2bc',
|
|
93
|
+
'#eeeef0',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#00000000',
|
|
97
|
+
'#f5f4f609',
|
|
98
|
+
'#ebeaf814',
|
|
99
|
+
'#eee5f81d',
|
|
100
|
+
'#efe6fe25',
|
|
101
|
+
'#f1e6fd30',
|
|
102
|
+
'#eee9ff40',
|
|
103
|
+
'#eee7ff5d',
|
|
104
|
+
'#eae6fd6e',
|
|
105
|
+
'#ece9fd7c',
|
|
106
|
+
'#f5f1ffb7',
|
|
107
|
+
'#fdfdffef',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.07 0.067 0.074)',
|
|
113
|
+
'color(display-p3 0.101 0.098 0.105)',
|
|
114
|
+
'color(display-p3 0.138 0.134 0.144)',
|
|
115
|
+
'color(display-p3 0.167 0.161 0.175)',
|
|
116
|
+
'color(display-p3 0.196 0.189 0.206)',
|
|
117
|
+
'color(display-p3 0.232 0.225 0.245)',
|
|
118
|
+
'color(display-p3 0.286 0.277 0.302)',
|
|
119
|
+
'color(display-p3 0.383 0.373 0.408)',
|
|
120
|
+
'color(display-p3 0.434 0.428 0.467)',
|
|
121
|
+
'color(display-p3 0.487 0.48 0.519)',
|
|
122
|
+
'color(display-p3 0.707 0.7 0.735)',
|
|
123
|
+
'color(display-p3 0.933 0.933 0.94)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0 0 / 0)',
|
|
127
|
+
'color(display-p3 0.996 0.992 1 / 0.034)',
|
|
128
|
+
'color(display-p3 0.937 0.933 0.992 / 0.077)',
|
|
129
|
+
'color(display-p3 0.957 0.918 0.996 / 0.111)',
|
|
130
|
+
'color(display-p3 0.937 0.906 0.996 / 0.145)',
|
|
131
|
+
'color(display-p3 0.953 0.925 0.996 / 0.183)',
|
|
132
|
+
'color(display-p3 0.945 0.929 1 / 0.246)',
|
|
133
|
+
'color(display-p3 0.937 0.918 1 / 0.361)',
|
|
134
|
+
'color(display-p3 0.933 0.918 1 / 0.424)',
|
|
135
|
+
'color(display-p3 0.941 0.925 1 / 0.479)',
|
|
136
|
+
'color(display-p3 0.965 0.961 1 / 0.712)',
|
|
137
|
+
'color(display-p3 0.992 0.992 1 / 0.937)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|