@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/violet.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "violet";
|
|
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/violet.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'violet',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: 'white',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#f9f6ffcc',
|
|
10
|
+
p3: 'color(display-p3 0.9725 0.9647 0.9961 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#25193980',
|
|
14
|
+
p3: 'color(display-p3 0.1333 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
|
+
'#fdfcfe',
|
|
21
|
+
'#faf8ff',
|
|
22
|
+
'#f4f0fe',
|
|
23
|
+
'#ebe4ff',
|
|
24
|
+
'#e1d9ff',
|
|
25
|
+
'#d4cafe',
|
|
26
|
+
'#c2b5f5',
|
|
27
|
+
'#aa99ec',
|
|
28
|
+
'#6e56cf',
|
|
29
|
+
'#654dc4',
|
|
30
|
+
'#6550b9',
|
|
31
|
+
'#2f265f',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#5500aa03',
|
|
35
|
+
'#4900ff07',
|
|
36
|
+
'#4400ee0f',
|
|
37
|
+
'#4300ff1b',
|
|
38
|
+
'#3600ff26',
|
|
39
|
+
'#3100fb35',
|
|
40
|
+
'#2d01dd4a',
|
|
41
|
+
'#2b00d066',
|
|
42
|
+
'#2400b7a9',
|
|
43
|
+
'#2300abb2',
|
|
44
|
+
'#1f0099af',
|
|
45
|
+
'#0b0043d9',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.991 0.988 0.995)',
|
|
51
|
+
'color(display-p3 0.978 0.974 0.998)',
|
|
52
|
+
'color(display-p3 0.953 0.943 0.993)',
|
|
53
|
+
'color(display-p3 0.916 0.897 1)',
|
|
54
|
+
'color(display-p3 0.876 0.851 1)',
|
|
55
|
+
'color(display-p3 0.825 0.793 0.981)',
|
|
56
|
+
'color(display-p3 0.752 0.712 0.943)',
|
|
57
|
+
'color(display-p3 0.654 0.602 0.902)',
|
|
58
|
+
'color(display-p3 0.417 0.341 0.784)',
|
|
59
|
+
'color(display-p3 0.381 0.306 0.741)',
|
|
60
|
+
'color(display-p3 0.383 0.317 0.702)',
|
|
61
|
+
'color(display-p3 0.179 0.15 0.359)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.349 0.024 0.675 / 0.012)',
|
|
65
|
+
'color(display-p3 0.161 0.024 0.863 / 0.028)',
|
|
66
|
+
'color(display-p3 0.204 0.004 0.871 / 0.059)',
|
|
67
|
+
'color(display-p3 0.196 0.004 1 / 0.102)',
|
|
68
|
+
'color(display-p3 0.165 0.008 1 / 0.15)',
|
|
69
|
+
'color(display-p3 0.153 0.004 0.906 / 0.208)',
|
|
70
|
+
'color(display-p3 0.141 0.004 0.796 / 0.287)',
|
|
71
|
+
'color(display-p3 0.133 0.004 0.753 / 0.397)',
|
|
72
|
+
'color(display-p3 0.114 0 0.675 / 0.659)',
|
|
73
|
+
'color(display-p3 0.11 0 0.627 / 0.695)',
|
|
74
|
+
'color(display-p3 0.383 0.317 0.702)',
|
|
75
|
+
'color(display-p3 0.179 0.15 0.359)',
|
|
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
|
+
'#14121f',
|
|
83
|
+
'#1b1525',
|
|
84
|
+
'#291f43',
|
|
85
|
+
'#33255b',
|
|
86
|
+
'#3c2e69',
|
|
87
|
+
'#473876',
|
|
88
|
+
'#56468b',
|
|
89
|
+
'#6958ad',
|
|
90
|
+
'#6e56cf',
|
|
91
|
+
'#7d66d9',
|
|
92
|
+
'#baa7ff',
|
|
93
|
+
'#e2ddfe',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#4422ff0f',
|
|
97
|
+
'#853ff916',
|
|
98
|
+
'#8354fe36',
|
|
99
|
+
'#7d51fd50',
|
|
100
|
+
'#845ffd5f',
|
|
101
|
+
'#8f6cfd6d',
|
|
102
|
+
'#9879ff83',
|
|
103
|
+
'#977dfea8',
|
|
104
|
+
'#8668ffcc',
|
|
105
|
+
'#9176fed7',
|
|
106
|
+
'#baa7ff',
|
|
107
|
+
'#e3defffe',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.077 0.071 0.118)',
|
|
113
|
+
'color(display-p3 0.101 0.084 0.141)',
|
|
114
|
+
'color(display-p3 0.154 0.123 0.256)',
|
|
115
|
+
'color(display-p3 0.191 0.148 0.345)',
|
|
116
|
+
'color(display-p3 0.226 0.182 0.396)',
|
|
117
|
+
'color(display-p3 0.269 0.223 0.449)',
|
|
118
|
+
'color(display-p3 0.326 0.277 0.53)',
|
|
119
|
+
'color(display-p3 0.399 0.346 0.656)',
|
|
120
|
+
'color(display-p3 0.417 0.341 0.784)',
|
|
121
|
+
'color(display-p3 0.477 0.402 0.823)',
|
|
122
|
+
'color(display-p3 0.72 0.65 1)',
|
|
123
|
+
'color(display-p3 0.883 0.867 0.986)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.282 0.141 0.996 / 0.055)',
|
|
127
|
+
'color(display-p3 0.51 0.263 1 / 0.08)',
|
|
128
|
+
'color(display-p3 0.494 0.337 0.996 / 0.202)',
|
|
129
|
+
'color(display-p3 0.49 0.345 1 / 0.299)',
|
|
130
|
+
'color(display-p3 0.525 0.392 1 / 0.353)',
|
|
131
|
+
'color(display-p3 0.569 0.455 1 / 0.408)',
|
|
132
|
+
'color(display-p3 0.588 0.494 1 / 0.496)',
|
|
133
|
+
'color(display-p3 0.596 0.51 1 / 0.631)',
|
|
134
|
+
'color(display-p3 0.522 0.424 1 / 0.769)',
|
|
135
|
+
'color(display-p3 0.576 0.482 1 / 0.811)',
|
|
136
|
+
'color(display-p3 0.72 0.65 1)',
|
|
137
|
+
'color(display-p3 0.883 0.867 0.986)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/colors/yellow.d.ts
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: "yellow";
|
|
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/yellow.js
CHANGED
|
@@ -1,125 +1,141 @@
|
|
|
1
1
|
import {} from "../types.js";
|
|
2
2
|
export default {
|
|
3
3
|
name: 'yellow',
|
|
4
|
-
indicator:
|
|
4
|
+
indicator: 9,
|
|
5
5
|
contrast: '#21201c',
|
|
6
|
-
track:
|
|
6
|
+
track: 9,
|
|
7
7
|
surface: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
light: {
|
|
9
|
+
srgb: '#fefbe4cc',
|
|
10
|
+
p3: 'color(display-p3 0.9961 0.9922 0.902 / 0.8)',
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
dark: {
|
|
13
|
+
srgb: '#231f1380',
|
|
14
|
+
p3: 'color(display-p3 0.1333 0.1176 0.0706 / 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
|
+
'#fdfdf9',
|
|
21
|
+
'#fefce9',
|
|
22
|
+
'#fffab8',
|
|
23
|
+
'#fff394',
|
|
24
|
+
'#ffe770',
|
|
25
|
+
'#f3d768',
|
|
26
|
+
'#e4c767',
|
|
27
|
+
'#d5ae39',
|
|
28
|
+
'#ffe629',
|
|
29
|
+
'#ffdc00',
|
|
30
|
+
'#9e6c00',
|
|
31
|
+
'#473b1f',
|
|
32
|
+
],
|
|
33
|
+
alpha: [
|
|
34
|
+
'#aaaa0006',
|
|
35
|
+
'#f4dd0016',
|
|
36
|
+
'#ffee0047',
|
|
37
|
+
'#ffe3016b',
|
|
38
|
+
'#ffd5008f',
|
|
39
|
+
'#ebbc0097',
|
|
40
|
+
'#d2a10098',
|
|
41
|
+
'#c99700c6',
|
|
42
|
+
'#ffe100d6',
|
|
43
|
+
'#ffdc00',
|
|
44
|
+
'#9e6c00',
|
|
45
|
+
'#2e2000e0',
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
p3: {
|
|
49
|
+
solid: [
|
|
50
|
+
'color(display-p3 0.992 0.992 0.978)',
|
|
51
|
+
'color(display-p3 0.995 0.99 0.922)',
|
|
52
|
+
'color(display-p3 0.997 0.982 0.749)',
|
|
53
|
+
'color(display-p3 0.992 0.953 0.627)',
|
|
54
|
+
'color(display-p3 0.984 0.91 0.51)',
|
|
55
|
+
'color(display-p3 0.934 0.847 0.474)',
|
|
56
|
+
'color(display-p3 0.876 0.785 0.46)',
|
|
57
|
+
'color(display-p3 0.811 0.689 0.313)',
|
|
58
|
+
'color(display-p3 1 0.92 0.22)',
|
|
59
|
+
'color(display-p3 0.977 0.868 0.291)',
|
|
60
|
+
'color(display-p3 0.6 0.44 0)',
|
|
61
|
+
'color(display-p3 0.271 0.233 0.137)',
|
|
62
|
+
],
|
|
63
|
+
alpha: [
|
|
64
|
+
'color(display-p3 0.675 0.675 0.024 / 0.024)',
|
|
65
|
+
'color(display-p3 0.953 0.855 0.008 / 0.079)',
|
|
66
|
+
'color(display-p3 0.988 0.925 0.004 / 0.251)',
|
|
67
|
+
'color(display-p3 0.98 0.875 0.004 / 0.373)',
|
|
68
|
+
'color(display-p3 0.969 0.816 0.004 / 0.491)',
|
|
69
|
+
'color(display-p3 0.875 0.71 0 / 0.526)',
|
|
70
|
+
'color(display-p3 0.769 0.604 0 / 0.542)',
|
|
71
|
+
'color(display-p3 0.725 0.549 0 / 0.687)',
|
|
72
|
+
'color(display-p3 1 0.898 0 / 0.781)',
|
|
73
|
+
'color(display-p3 0.969 0.812 0 / 0.71)',
|
|
74
|
+
'color(display-p3 0.6 0.44 0)',
|
|
75
|
+
'color(display-p3 0.271 0.233 0.137)',
|
|
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
|
+
'#14120b',
|
|
83
|
+
'#1b180f',
|
|
84
|
+
'#2d2305',
|
|
85
|
+
'#362b00',
|
|
86
|
+
'#433500',
|
|
87
|
+
'#524202',
|
|
88
|
+
'#665417',
|
|
89
|
+
'#836a21',
|
|
90
|
+
'#ffe629',
|
|
91
|
+
'#ffff57',
|
|
92
|
+
'#f5e147',
|
|
93
|
+
'#f6eeb4',
|
|
94
|
+
],
|
|
95
|
+
alpha: [
|
|
96
|
+
'#d1510004',
|
|
97
|
+
'#f9b4000b',
|
|
98
|
+
'#ffaa001e',
|
|
99
|
+
'#fdb70028',
|
|
100
|
+
'#febb0036',
|
|
101
|
+
'#fec40046',
|
|
102
|
+
'#fdcb225c',
|
|
103
|
+
'#fdca327b',
|
|
104
|
+
'#ffe629',
|
|
105
|
+
'#ffff57',
|
|
106
|
+
'#fee949f5',
|
|
107
|
+
'#fef6baf6',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
p3: {
|
|
111
|
+
solid: [
|
|
112
|
+
'color(display-p3 0.078 0.069 0.047)',
|
|
113
|
+
'color(display-p3 0.103 0.094 0.063)',
|
|
114
|
+
'color(display-p3 0.168 0.137 0.039)',
|
|
115
|
+
'color(display-p3 0.209 0.169 0)',
|
|
116
|
+
'color(display-p3 0.255 0.209 0)',
|
|
117
|
+
'color(display-p3 0.31 0.261 0.07)',
|
|
118
|
+
'color(display-p3 0.389 0.331 0.135)',
|
|
119
|
+
'color(display-p3 0.497 0.42 0.182)',
|
|
120
|
+
'color(display-p3 1 0.92 0.22)',
|
|
121
|
+
'color(display-p3 1 1 0.456)',
|
|
122
|
+
'color(display-p3 0.948 0.885 0.392)',
|
|
123
|
+
'color(display-p3 0.959 0.934 0.731)',
|
|
124
|
+
],
|
|
125
|
+
alpha: [
|
|
126
|
+
'color(display-p3 0.973 0.369 0 / 0.013)',
|
|
127
|
+
'color(display-p3 0.996 0.792 0 / 0.038)',
|
|
128
|
+
'color(display-p3 0.996 0.71 0 / 0.11)',
|
|
129
|
+
'color(display-p3 0.996 0.741 0 / 0.152)',
|
|
130
|
+
'color(display-p3 0.996 0.765 0 / 0.202)',
|
|
131
|
+
'color(display-p3 0.996 0.816 0.082 / 0.261)',
|
|
132
|
+
'color(display-p3 1 0.831 0.263 / 0.345)',
|
|
133
|
+
'color(display-p3 1 0.831 0.314 / 0.463)',
|
|
134
|
+
'color(display-p3 1 0.922 0.22)',
|
|
135
|
+
'color(display-p3 1 1 0.455)',
|
|
136
|
+
'color(display-p3 0.948 0.885 0.392)',
|
|
137
|
+
'color(display-p3 0.959 0.934 0.731)',
|
|
138
|
+
],
|
|
139
|
+
},
|
|
124
140
|
},
|
|
125
141
|
};
|
package/dist/css.d.ts
CHANGED
|
@@ -36,4 +36,5 @@ export declare const css: {
|
|
|
36
36
|
*/
|
|
37
37
|
tailwind: typeof tailwind;
|
|
38
38
|
};
|
|
39
|
+
export declare function applyColorVars(prefix: 'accent' | 'gray', color: PaletteColor<Color>, theme: 'light' | 'dark', space: 'srgb' | 'p3', set: (name: string, value: string) => void): void;
|
|
39
40
|
export {};
|