-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.ts
More file actions
246 lines (223 loc) · 4.22 KB
/
Copy pathindex.ts
File metadata and controls
246 lines (223 loc) · 4.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
70
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
import chroma from "chroma-js";
import baseColors from "tailwindcss/colors.js";
delete baseColors.lightBlue
delete baseColors.warmGray
delete baseColors.trueGray
delete baseColors.coolGray
delete baseColors.blueGray
const tailwind_select_colors = Object.entries(baseColors).filter(
([, value]) => value["50"]
)
// console.log("-> ", { tailwind_select_colors }, "");
const tailwind_select_colors_with_color_array = tailwind_select_colors.map(
([color_name_as_string, color_object]) => {
const current_color_array = Object.entries(color_object);
const current_color_colors_array = current_color_array.map(
([, color_hex_as_string]) => {
return color_hex_as_string;
}
);
const current_color_values_array = current_color_array.map(
([color_number_as_string]) => {
return Number(color_number_as_string);
}
);
return [
color_name_as_string,
current_color_colors_array,
current_color_values_array,
];
}
);
// // console.log("-> ", { tailwind_select_colors_with_color_array }, "");
const chroma_scales = tailwind_select_colors_with_color_array.reduce(
(
previousValue,
[
color_name_as_string,
current_color_colors_array,
current_color_values_array,
]
) => {
return {
...previousValue,
[color_name_as_string as colors]: {
scale: chroma
// @ts-ignore
.scale([
"#FFFFFF",
...(current_color_colors_array as string[]),
"#000000",
])
.domain([0, ...(current_color_values_array as number[]), 1000])
.mode("lab"),
},
};
},
{} as Record<colors, { scale: chroma.Scale }>
);
type colors =
| "slate"
| "gray"
| "zinc"
| "neutral"
| "stone"
| "red"
| "orange"
| "amber"
| "yellow"
| "lime"
| "green"
| "emerald"
| "teal"
| "cyan"
| "sky"
| "blue"
| "indigo"
| "violet"
| "purple"
| "fuchsia"
| "pink"
| "rose"
| "lightBlue"
| "warmGray"
| "trueGray"
| "coolGray"
| "blueGray";
// // https://gka.github.io/chroma.js/#color-hsl
type formats =
| "hex"
| "rgb"
| "rgba"
| "hsl"
| "hsv"
| "hsi"
| "lab"
| "lch"
| "hcl"
| "oklab"
| "oklch"
| "cssrgb"
| "csshsl"
| "csslab"
| "csslch"
| "cssoklab"
| "cssoklch";
export let get_color = (
color: colors = "gray",
number: number = 500,
format: formats = "hex"
): string => {
const chroma_color = chroma_scales[color].scale(number);
if (format.startsWith("css")) {
return chroma_color.css(format.slice(3) as any);
}
if (!format.startsWith("css")) {
// @ts-ignore
return chroma_color[format]();
}
return "";
};
// Define the color names as a type to ensure type safety
export type ColorName =
| "slate"
| "gray"
| "zinc"
| "neutral"
| "stone"
| "red"
| "orange"
| "amber"
| "yellow"
| "lime"
| "green"
| "emerald"
| "teal"
| "cyan"
| "sky"
| "blue"
| "indigo"
| "violet"
| "purple"
| "fuchsia"
| "pink"
| "rose"
| "lightBlue"
| "warmGray"
| "trueGray"
| "coolGray"
| "blueGray";
// Create a type for the color function
type ColorFunction = (value: number, format?: formats) => string;
// Create an object to store all color functions
const c: Record<ColorName, ColorFunction> = {} as Record<
ColorName,
ColorFunction
>;
// List of all color names
const colorNames: ColorName[] = [
"slate",
"gray",
"zinc",
"neutral",
"stone",
"red",
"orange",
"amber",
"yellow",
"lime",
"green",
"emerald",
"teal",
"cyan",
"sky",
"blue",
"indigo",
"violet",
"purple",
"fuchsia",
"pink",
"rose",
"lightBlue",
"warmGray",
"trueGray",
"coolGray",
"blueGray",
];
// Generate all color functions dynamically
colorNames.forEach((colorName) => {
c[colorName] = (value: number, format?: formats) =>
get_color(colorName, value, format);
});
// Export all color functions
export const {
slate,
gray,
zinc,
neutral,
stone,
red,
orange,
amber,
yellow,
lime,
green,
emerald,
teal,
cyan,
sky,
blue,
indigo,
violet,
purple,
fuchsia,
pink,
rose,
lightBlue,
warmGray,
trueGray,
coolGray,
blueGray,
} = c;
// Export the colors object as well for dynamic access
export { c };