@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/green.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "green";
|
|
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/green.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'green',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#f1faf4cc',
|
|
10
|
+
p3: 'color(display-p3 0.9569 0.9804 0.9608 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#15251d80',
|
|
14
|
+
p3: 'color(display-p3 0.0941 0.1412 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
|
+
'#fbfefc',
|
|
21
|
+
'#f4fbf6',
|
|
22
|
+
'#e6f6eb',
|
|
23
|
+
'#d6f1df',
|
|
24
|
+
'#c4e8d1',
|
|
25
|
+
'#adddc0',
|
|
26
|
+
'#8eceaa',
|
|
27
|
+
'#5bb98b',
|
|
28
|
+
'#30a46c',
|
|
29
|
+
'#2b9a66',
|
|
30
|
+
'#218358',
|
|
31
|
+
'#193b2d',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#00c04004',
|
|
35
|
+
'#00a32f0b',
|
|
36
|
+
'#00a43319',
|
|
37
|
+
'#00a83829',
|
|
38
|
+
'#019c393b',
|
|
39
|
+
'#00963c52',
|
|
40
|
+
'#00914071',
|
|
41
|
+
'#00924ba4',
|
|
42
|
+
'#008f4acf',
|
|
43
|
+
'#008647d4',
|
|
44
|
+
'#00713fde',
|
|
45
|
+
'#002616e6',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.986 0.996 0.989)',
|
|
51
|
+
'color(display-p3 0.963 0.983 0.967)',
|
|
52
|
+
'color(display-p3 0.913 0.964 0.925)',
|
|
53
|
+
'color(display-p3 0.859 0.94 0.879)',
|
|
54
|
+
'color(display-p3 0.796 0.907 0.826)',
|
|
55
|
+
'color(display-p3 0.718 0.863 0.761)',
|
|
56
|
+
'color(display-p3 0.61 0.801 0.675)',
|
|
57
|
+
'color(display-p3 0.451 0.715 0.559)',
|
|
58
|
+
'color(display-p3 0.332 0.634 0.442)',
|
|
59
|
+
'color(display-p3 0.308 0.595 0.417)',
|
|
60
|
+
'color(display-p3 0.19 0.5 0.32)',
|
|
61
|
+
'color(display-p3 0.132 0.228 0.18)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.024 0.757 0.267 / 0.016)',
|
|
65
|
+
'color(display-p3 0.024 0.565 0.129 / 0.036)',
|
|
66
|
+
'color(display-p3 0.012 0.596 0.145 / 0.087)',
|
|
67
|
+
'color(display-p3 0.008 0.588 0.145 / 0.142)',
|
|
68
|
+
'color(display-p3 0.004 0.541 0.157 / 0.204)',
|
|
69
|
+
'color(display-p3 0.004 0.518 0.157 / 0.283)',
|
|
70
|
+
'color(display-p3 0.004 0.486 0.165 / 0.389)',
|
|
71
|
+
'color(display-p3 0 0.478 0.2 / 0.55)',
|
|
72
|
+
'color(display-p3 0 0.455 0.165 / 0.667)',
|
|
73
|
+
'color(display-p3 0 0.416 0.153 / 0.691)',
|
|
74
|
+
'color(display-p3 0.19 0.5 0.32)',
|
|
75
|
+
'color(display-p3 0.132 0.228 0.18)',
|
|
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
|
+
'#0e1512',
|
|
83
|
+
'#121b17',
|
|
84
|
+
'#132d21',
|
|
85
|
+
'#113b29',
|
|
86
|
+
'#174933',
|
|
87
|
+
'#20573e',
|
|
88
|
+
'#28684a',
|
|
89
|
+
'#2f7c57',
|
|
90
|
+
'#30a46c',
|
|
91
|
+
'#33b074',
|
|
92
|
+
'#3dd68c',
|
|
93
|
+
'#b1f1cb',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#00de4505',
|
|
97
|
+
'#29f99d0b',
|
|
98
|
+
'#22ff991e',
|
|
99
|
+
'#11ff992d',
|
|
100
|
+
'#2bffa23c',
|
|
101
|
+
'#44ffaa4b',
|
|
102
|
+
'#50fdac5e',
|
|
103
|
+
'#54ffad73',
|
|
104
|
+
'#44ffa49e',
|
|
105
|
+
'#43fea4ab',
|
|
106
|
+
'#46fea5d4',
|
|
107
|
+
'#bbffd7f0',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.062 0.083 0.071)',
|
|
113
|
+
'color(display-p3 0.079 0.106 0.09)',
|
|
114
|
+
'color(display-p3 0.1 0.173 0.133)',
|
|
115
|
+
'color(display-p3 0.115 0.229 0.166)',
|
|
116
|
+
'color(display-p3 0.147 0.282 0.206)',
|
|
117
|
+
'color(display-p3 0.185 0.338 0.25)',
|
|
118
|
+
'color(display-p3 0.227 0.403 0.298)',
|
|
119
|
+
'color(display-p3 0.27 0.479 0.351)',
|
|
120
|
+
'color(display-p3 0.332 0.634 0.442)',
|
|
121
|
+
'color(display-p3 0.357 0.682 0.474)',
|
|
122
|
+
'color(display-p3 0.434 0.828 0.573)',
|
|
123
|
+
'color(display-p3 0.747 0.938 0.807)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0.992 0.298 / 0.017)',
|
|
127
|
+
'color(display-p3 0.341 0.98 0.616 / 0.043)',
|
|
128
|
+
'color(display-p3 0.376 0.996 0.655 / 0.114)',
|
|
129
|
+
'color(display-p3 0.341 0.996 0.635 / 0.173)',
|
|
130
|
+
'color(display-p3 0.408 1 0.678 / 0.232)',
|
|
131
|
+
'color(display-p3 0.475 1 0.706 / 0.29)',
|
|
132
|
+
'color(display-p3 0.514 1 0.706 / 0.362)',
|
|
133
|
+
'color(display-p3 0.529 1 0.718 / 0.442)',
|
|
134
|
+
'color(display-p3 0.502 0.996 0.682 / 0.61)',
|
|
135
|
+
'color(display-p3 0.506 1 0.682 / 0.66)',
|
|
136
|
+
'color(display-p3 0.434 0.828 0.573)',
|
|
137
|
+
'color(display-p3 0.747 0.938 0.807)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/indigo.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "indigo";
|
|
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/indigo.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'indigo',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#f5f8ffcc',
|
|
10
|
+
p3: 'color(display-p3 0.9647 0.9725 0.9961 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#171d3b80',
|
|
14
|
+
p3: 'color(display-p3 0.0941 0.1098 0.2196 / 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
|
+
'#fdfdfe',
|
|
21
|
+
'#f7f9ff',
|
|
22
|
+
'#edf2fe',
|
|
23
|
+
'#e1e9ff',
|
|
24
|
+
'#d2deff',
|
|
25
|
+
'#c1d0ff',
|
|
26
|
+
'#abbdf9',
|
|
27
|
+
'#8da4ef',
|
|
28
|
+
'#3e63dd',
|
|
29
|
+
'#3358d4',
|
|
30
|
+
'#3a5bc7',
|
|
31
|
+
'#1f2d5c',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#00008002',
|
|
35
|
+
'#0040ff08',
|
|
36
|
+
'#0047f112',
|
|
37
|
+
'#0044ff1e',
|
|
38
|
+
'#0044ff2d',
|
|
39
|
+
'#003eff3e',
|
|
40
|
+
'#0037ed54',
|
|
41
|
+
'#0034dc72',
|
|
42
|
+
'#0031d2c1',
|
|
43
|
+
'#002ec9cc',
|
|
44
|
+
'#002bb7c5',
|
|
45
|
+
'#001046e0',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.992 0.992 0.996)',
|
|
51
|
+
'color(display-p3 0.971 0.977 0.998)',
|
|
52
|
+
'color(display-p3 0.933 0.948 0.992)',
|
|
53
|
+
'color(display-p3 0.885 0.914 1)',
|
|
54
|
+
'color(display-p3 0.831 0.87 1)',
|
|
55
|
+
'color(display-p3 0.767 0.814 0.995)',
|
|
56
|
+
'color(display-p3 0.685 0.74 0.957)',
|
|
57
|
+
'color(display-p3 0.569 0.639 0.916)',
|
|
58
|
+
'color(display-p3 0.276 0.384 0.837)',
|
|
59
|
+
'color(display-p3 0.234 0.343 0.801)',
|
|
60
|
+
'color(display-p3 0.256 0.354 0.755)',
|
|
61
|
+
'color(display-p3 0.133 0.175 0.348)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.02 0.02 0.51 / 0.008)',
|
|
65
|
+
'color(display-p3 0.024 0.161 0.863 / 0.028)',
|
|
66
|
+
'color(display-p3 0.008 0.239 0.886 / 0.067)',
|
|
67
|
+
'color(display-p3 0.004 0.247 1 / 0.114)',
|
|
68
|
+
'color(display-p3 0.004 0.235 1 / 0.169)',
|
|
69
|
+
'color(display-p3 0.004 0.208 0.984 / 0.232)',
|
|
70
|
+
'color(display-p3 0.004 0.176 0.863 / 0.314)',
|
|
71
|
+
'color(display-p3 0.004 0.165 0.812 / 0.432)',
|
|
72
|
+
'color(display-p3 0 0.153 0.773 / 0.726)',
|
|
73
|
+
'color(display-p3 0 0.137 0.737 / 0.765)',
|
|
74
|
+
'color(display-p3 0.256 0.354 0.755)',
|
|
75
|
+
'color(display-p3 0.133 0.175 0.348)',
|
|
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
|
+
'#11131f',
|
|
83
|
+
'#141726',
|
|
84
|
+
'#182449',
|
|
85
|
+
'#1d2e62',
|
|
86
|
+
'#253974',
|
|
87
|
+
'#304384',
|
|
88
|
+
'#3a4f97',
|
|
89
|
+
'#435db1',
|
|
90
|
+
'#3e63dd',
|
|
91
|
+
'#5472e4',
|
|
92
|
+
'#9eb1ff',
|
|
93
|
+
'#d6e1ff',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#1133ff0f',
|
|
97
|
+
'#3354fa17',
|
|
98
|
+
'#2f62ff3c',
|
|
99
|
+
'#3566ff57',
|
|
100
|
+
'#4171fd6b',
|
|
101
|
+
'#5178fd7c',
|
|
102
|
+
'#5a7fff90',
|
|
103
|
+
'#5b81feac',
|
|
104
|
+
'#4671ffdb',
|
|
105
|
+
'#5c7efee3',
|
|
106
|
+
'#9eb1ff',
|
|
107
|
+
'#d6e1ff',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.068 0.074 0.118)',
|
|
113
|
+
'color(display-p3 0.081 0.089 0.144)',
|
|
114
|
+
'color(display-p3 0.105 0.141 0.275)',
|
|
115
|
+
'color(display-p3 0.129 0.18 0.369)',
|
|
116
|
+
'color(display-p3 0.163 0.22 0.439)',
|
|
117
|
+
'color(display-p3 0.203 0.262 0.5)',
|
|
118
|
+
'color(display-p3 0.245 0.309 0.575)',
|
|
119
|
+
'color(display-p3 0.285 0.362 0.674)',
|
|
120
|
+
'color(display-p3 0.276 0.384 0.837)',
|
|
121
|
+
'color(display-p3 0.354 0.445 0.866)',
|
|
122
|
+
'color(display-p3 0.63 0.69 1)',
|
|
123
|
+
'color(display-p3 0.848 0.881 0.99)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.071 0.212 0.996 / 0.055)',
|
|
127
|
+
'color(display-p3 0.251 0.345 0.988 / 0.085)',
|
|
128
|
+
'color(display-p3 0.243 0.404 1 / 0.223)',
|
|
129
|
+
'color(display-p3 0.263 0.42 1 / 0.324)',
|
|
130
|
+
'color(display-p3 0.314 0.451 1 / 0.4)',
|
|
131
|
+
'color(display-p3 0.361 0.49 1 / 0.467)',
|
|
132
|
+
'color(display-p3 0.388 0.51 1 / 0.547)',
|
|
133
|
+
'color(display-p3 0.404 0.518 1 / 0.652)',
|
|
134
|
+
'color(display-p3 0.318 0.451 1 / 0.824)',
|
|
135
|
+
'color(display-p3 0.404 0.506 1 / 0.858)',
|
|
136
|
+
'color(display-p3 0.63 0.69 1)',
|
|
137
|
+
'color(display-p3 0.848 0.881 0.99)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|