@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/iris.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "iris";
|
|
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/iris.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'iris',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#f6f6ffcc',
|
|
10
|
+
p3: 'color(display-p3 0.9647 0.9647 0.9961 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#1d1b3980',
|
|
14
|
+
p3: 'color(display-p3 0.1098 0.102 0.2118 / 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
|
+
'#fdfdff',
|
|
21
|
+
'#f8f8ff',
|
|
22
|
+
'#f0f1fe',
|
|
23
|
+
'#e6e7ff',
|
|
24
|
+
'#dadcff',
|
|
25
|
+
'#cbcdff',
|
|
26
|
+
'#b8baf8',
|
|
27
|
+
'#9b9ef0',
|
|
28
|
+
'#5b5bd6',
|
|
29
|
+
'#5151cd',
|
|
30
|
+
'#5753c6',
|
|
31
|
+
'#272962',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#0000ff02',
|
|
35
|
+
'#0000ff07',
|
|
36
|
+
'#0011ee0f',
|
|
37
|
+
'#000bff19',
|
|
38
|
+
'#000eff25',
|
|
39
|
+
'#000aff34',
|
|
40
|
+
'#0008e647',
|
|
41
|
+
'#0008d964',
|
|
42
|
+
'#0000c0a4',
|
|
43
|
+
'#0000b6ae',
|
|
44
|
+
'#0600abac',
|
|
45
|
+
'#000246d8',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.992 0.992 0.999)',
|
|
51
|
+
'color(display-p3 0.972 0.973 0.998)',
|
|
52
|
+
'color(display-p3 0.943 0.945 0.992)',
|
|
53
|
+
'color(display-p3 0.902 0.906 1)',
|
|
54
|
+
'color(display-p3 0.857 0.861 1)',
|
|
55
|
+
'color(display-p3 0.799 0.805 0.987)',
|
|
56
|
+
'color(display-p3 0.721 0.727 0.955)',
|
|
57
|
+
'color(display-p3 0.61 0.619 0.918)',
|
|
58
|
+
'color(display-p3 0.357 0.357 0.81)',
|
|
59
|
+
'color(display-p3 0.318 0.318 0.774)',
|
|
60
|
+
'color(display-p3 0.337 0.326 0.748)',
|
|
61
|
+
'color(display-p3 0.154 0.161 0.371)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.02 0.02 1 / 0.008)',
|
|
65
|
+
'color(display-p3 0.024 0.024 0.863 / 0.028)',
|
|
66
|
+
'color(display-p3 0.004 0.071 0.871 / 0.059)',
|
|
67
|
+
'color(display-p3 0.012 0.051 1 / 0.099)',
|
|
68
|
+
'color(display-p3 0.008 0.035 1 / 0.142)',
|
|
69
|
+
'color(display-p3 0 0.02 0.941 / 0.2)',
|
|
70
|
+
'color(display-p3 0.004 0.02 0.847 / 0.279)',
|
|
71
|
+
'color(display-p3 0.004 0.024 0.788 / 0.389)',
|
|
72
|
+
'color(display-p3 0 0 0.706 / 0.644)',
|
|
73
|
+
'color(display-p3 0 0 0.667 / 0.683)',
|
|
74
|
+
'color(display-p3 0.337 0.326 0.748)',
|
|
75
|
+
'color(display-p3 0.154 0.161 0.371)',
|
|
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
|
+
'#13131e',
|
|
83
|
+
'#171625',
|
|
84
|
+
'#202248',
|
|
85
|
+
'#262a65',
|
|
86
|
+
'#303374',
|
|
87
|
+
'#3d3e82',
|
|
88
|
+
'#4a4a95',
|
|
89
|
+
'#5958b1',
|
|
90
|
+
'#5b5bd6',
|
|
91
|
+
'#6e6ade',
|
|
92
|
+
'#b1a9ff',
|
|
93
|
+
'#e0dffe',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#3636fe0e',
|
|
97
|
+
'#564bf916',
|
|
98
|
+
'#525bff3b',
|
|
99
|
+
'#4d58ff5a',
|
|
100
|
+
'#5b62fd6b',
|
|
101
|
+
'#6d6ffd7a',
|
|
102
|
+
'#7777fe8e',
|
|
103
|
+
'#7b7afeac',
|
|
104
|
+
'#6a6afed4',
|
|
105
|
+
'#7d79ffdc',
|
|
106
|
+
'#b1a9ff',
|
|
107
|
+
'#e1e0fffe',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.075 0.075 0.114)',
|
|
113
|
+
'color(display-p3 0.089 0.086 0.14)',
|
|
114
|
+
'color(display-p3 0.128 0.134 0.272)',
|
|
115
|
+
'color(display-p3 0.153 0.165 0.382)',
|
|
116
|
+
'color(display-p3 0.192 0.201 0.44)',
|
|
117
|
+
'color(display-p3 0.239 0.241 0.491)',
|
|
118
|
+
'color(display-p3 0.291 0.289 0.565)',
|
|
119
|
+
'color(display-p3 0.35 0.345 0.673)',
|
|
120
|
+
'color(display-p3 0.357 0.357 0.81)',
|
|
121
|
+
'color(display-p3 0.428 0.416 0.843)',
|
|
122
|
+
'color(display-p3 0.685 0.662 1)',
|
|
123
|
+
'color(display-p3 0.878 0.875 0.986)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.224 0.224 0.992 / 0.051)',
|
|
127
|
+
'color(display-p3 0.361 0.314 1 / 0.08)',
|
|
128
|
+
'color(display-p3 0.357 0.373 1 / 0.219)',
|
|
129
|
+
'color(display-p3 0.325 0.361 1 / 0.337)',
|
|
130
|
+
'color(display-p3 0.38 0.4 1 / 0.4)',
|
|
131
|
+
'color(display-p3 0.447 0.447 1 / 0.454)',
|
|
132
|
+
'color(display-p3 0.486 0.486 1 / 0.534)',
|
|
133
|
+
'color(display-p3 0.502 0.494 1 / 0.652)',
|
|
134
|
+
'color(display-p3 0.431 0.431 1 / 0.799)',
|
|
135
|
+
'color(display-p3 0.502 0.486 1 / 0.832)',
|
|
136
|
+
'color(display-p3 0.685 0.662 1)',
|
|
137
|
+
'color(display-p3 0.878 0.875 0.986)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/jade.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "jade";
|
|
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/jade.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'jade',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#f1faf5cc',
|
|
10
|
+
p3: 'color(display-p3 0.9529 0.9804 0.9608 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#13271f80',
|
|
14
|
+
p3: 'color(display-p3 0.0863 0.149 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
|
+
'#fbfefd',
|
|
21
|
+
'#f4fbf7',
|
|
22
|
+
'#e6f7ed',
|
|
23
|
+
'#d6f1e3',
|
|
24
|
+
'#c3e9d7',
|
|
25
|
+
'#acdec8',
|
|
26
|
+
'#8bceb6',
|
|
27
|
+
'#56ba9f',
|
|
28
|
+
'#29a383',
|
|
29
|
+
'#26997b',
|
|
30
|
+
'#208368',
|
|
31
|
+
'#1d3b31',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#00c08004',
|
|
35
|
+
'#00a3460b',
|
|
36
|
+
'#00ae4819',
|
|
37
|
+
'#00a85129',
|
|
38
|
+
'#00a2553c',
|
|
39
|
+
'#009a5753',
|
|
40
|
+
'#00945f74',
|
|
41
|
+
'#00976ea9',
|
|
42
|
+
'#00916bd6',
|
|
43
|
+
'#008764d9',
|
|
44
|
+
'#007152df',
|
|
45
|
+
'#002217e2',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.986 0.996 0.992)',
|
|
51
|
+
'color(display-p3 0.962 0.983 0.969)',
|
|
52
|
+
'color(display-p3 0.912 0.965 0.932)',
|
|
53
|
+
'color(display-p3 0.858 0.941 0.893)',
|
|
54
|
+
'color(display-p3 0.795 0.909 0.847)',
|
|
55
|
+
'color(display-p3 0.715 0.864 0.791)',
|
|
56
|
+
'color(display-p3 0.603 0.802 0.718)',
|
|
57
|
+
'color(display-p3 0.44 0.72 0.629)',
|
|
58
|
+
'color(display-p3 0.319 0.63 0.521)',
|
|
59
|
+
'color(display-p3 0.299 0.592 0.488)',
|
|
60
|
+
'color(display-p3 0.15 0.5 0.37)',
|
|
61
|
+
'color(display-p3 0.142 0.229 0.194)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.024 0.757 0.514 / 0.016)',
|
|
65
|
+
'color(display-p3 0.024 0.612 0.22 / 0.04)',
|
|
66
|
+
'color(display-p3 0.012 0.596 0.235 / 0.087)',
|
|
67
|
+
'color(display-p3 0.008 0.588 0.255 / 0.142)',
|
|
68
|
+
'color(display-p3 0.004 0.561 0.251 / 0.204)',
|
|
69
|
+
'color(display-p3 0.004 0.525 0.278 / 0.287)',
|
|
70
|
+
'color(display-p3 0.004 0.506 0.29 / 0.397)',
|
|
71
|
+
'color(display-p3 0 0.506 0.337 / 0.561)',
|
|
72
|
+
'color(display-p3 0 0.459 0.298 / 0.683)',
|
|
73
|
+
'color(display-p3 0 0.42 0.271 / 0.702)',
|
|
74
|
+
'color(display-p3 0.15 0.5 0.37)',
|
|
75
|
+
'color(display-p3 0.142 0.229 0.194)',
|
|
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
|
+
'#0d1512',
|
|
83
|
+
'#121c18',
|
|
84
|
+
'#0f2e22',
|
|
85
|
+
'#0b3b2c',
|
|
86
|
+
'#114837',
|
|
87
|
+
'#1b5745',
|
|
88
|
+
'#246854',
|
|
89
|
+
'#2a7e68',
|
|
90
|
+
'#29a383',
|
|
91
|
+
'#27b08b',
|
|
92
|
+
'#1fd8a4',
|
|
93
|
+
'#adf0d4',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#00de4505',
|
|
97
|
+
'#27fba60c',
|
|
98
|
+
'#02f99920',
|
|
99
|
+
'#00ffaa2d',
|
|
100
|
+
'#11ffb63b',
|
|
101
|
+
'#34ffc24b',
|
|
102
|
+
'#45fdc75e',
|
|
103
|
+
'#48ffcf75',
|
|
104
|
+
'#38feca9d',
|
|
105
|
+
'#31fec7ab',
|
|
106
|
+
'#21fec0d6',
|
|
107
|
+
'#b8ffe1ef',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.059 0.083 0.071)',
|
|
113
|
+
'color(display-p3 0.078 0.11 0.094)',
|
|
114
|
+
'color(display-p3 0.091 0.176 0.138)',
|
|
115
|
+
'color(display-p3 0.102 0.228 0.177)',
|
|
116
|
+
'color(display-p3 0.133 0.279 0.221)',
|
|
117
|
+
'color(display-p3 0.174 0.334 0.273)',
|
|
118
|
+
'color(display-p3 0.219 0.402 0.335)',
|
|
119
|
+
'color(display-p3 0.263 0.488 0.411)',
|
|
120
|
+
'color(display-p3 0.319 0.63 0.521)',
|
|
121
|
+
'color(display-p3 0.338 0.68 0.555)',
|
|
122
|
+
'color(display-p3 0.4 0.835 0.656)',
|
|
123
|
+
'color(display-p3 0.734 0.934 0.838)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0 0.992 0.298 / 0.017)',
|
|
127
|
+
'color(display-p3 0.318 0.988 0.651 / 0.047)',
|
|
128
|
+
'color(display-p3 0.267 1 0.667 / 0.118)',
|
|
129
|
+
'color(display-p3 0.275 0.996 0.702 / 0.173)',
|
|
130
|
+
'color(display-p3 0.361 1 0.741 / 0.227)',
|
|
131
|
+
'color(display-p3 0.439 1 0.796 / 0.286)',
|
|
132
|
+
'color(display-p3 0.49 1 0.804 / 0.362)',
|
|
133
|
+
'color(display-p3 0.506 1 0.835 / 0.45)',
|
|
134
|
+
'color(display-p3 0.478 0.996 0.816 / 0.606)',
|
|
135
|
+
'color(display-p3 0.478 1 0.816 / 0.656)',
|
|
136
|
+
'color(display-p3 0.4 0.835 0.656)',
|
|
137
|
+
'color(display-p3 0.734 0.934 0.838)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|