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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
#!/usr/bin/env ts-node
/**
* Color variable name scheme:
* has variant: --[prefix]-[name]-[variant]-color: [color];
* no variant: --[prefix]-[name]-color: [color];
* Variant scheme:
* [variant-prefix][level]
* eg. --cru-primary-color: [color]; --cru-primary-l1-color: [color];
*/
class HslColor {
constructor(
public h: number,
public s: number,
public l: number,
) {}
lighter(level: number): HslColor {
return new HslColor(this.h, this.s, this.l + level * 10);
}
darker(level: number): HslColor {
return new HslColor(this.h, this.s, this.l - level * 10);
}
toString(): string {
return `hsl(${this.h} ${this.s}% ${this.l}%)`;
}
}
class CssVarColor {
constructor(
public name: string,
public cssVar: string,
) {}
toString(): string {
return `var(--${this.cssVar})`;
}
}
class VariantColor {
constructor(
public color: HslColor,
public variant?: string | null,
) {}
toCssString(prefix: string, name: string): string {
const variantPart = this.variant == null ? "" : `-${this.variant}`;
return `--${prefix}-${name}${variantPart}-color: ${this.color.toString()};`;
}
}
type LightnessVariantType = "lighter" | "darker";
interface LightnessVariant {
prefix: string;
type: LightnessVariantType;
}
function generateLightnessVariantColors(
baseColor: HslColor,
lightnessVariant: LightnessVariant,
levels: number,
): VariantColor[] {
const result: VariantColor[] = [];
for (let i = 1; i <= levels; i++) {
const color =
lightnessVariant.type === "lighter"
? baseColor.lighter(i)
: baseColor.darker(i);
const colorVariant = `${lightnessVariant.prefix}${i}`;
result.push(new VariantColor(color, colorVariant));
}
return result;
}
type ColorMode = "light" | "dark";
const themeVariantPrefixes = ["l", "d", "f", "b"] as const;
type LightnessVariants = {
prefix: (typeof themeVariantPrefixes)[number];
type: LightnessVariantType;
}[];
function generateThemeColorLightnessVariants(
mode: ColorMode,
): LightnessVariants {
return [
{
prefix: "l",
type: "lighter",
},
{
prefix: "d",
type: "darker",
},
{
prefix: "f",
type: mode === "light" ? "lighter" : "darker",
},
{
prefix: "b",
type: mode === "light" ? "darker" : "lighter",
},
];
}
class ColorGroup {
constructor(
public name: string,
public baseColor: HslColor,
) {}
generateVariantColors(
lightnessVariants: LightnessVariant[],
levels = 3,
): VariantColor[] {
const result: VariantColor[] = [new VariantColor(this.baseColor)];
for (const lightnessVariant of lightnessVariants) {
result.push(
...generateLightnessVariantColors(
this.baseColor,
lightnessVariant,
levels,
),
);
}
return result;
}
}
class ThemeColorGroup extends ColorGroup {
constructor(name: string, baseColor: HslColor) {
super(name, baseColor);
}
generateColors(mode: ColorMode): VariantColor[] {
return super.generateVariantColors(
generateThemeColorLightnessVariants(mode),
);
}
generateCss(prefix: string, mode: ColorMode): string {
return this.generateColors(mode)
.map((c) => c.toCssString(prefix, this.name))
.join("\n");
}
}
class VarColorGroup {
constructor(
public name: string,
public varName: string,
) {}
generateCss(
prefix: string,
variantPrefixes = themeVariantPrefixes,
levels = 3,
): string {
const vs: string[] = [];
for (const v of variantPrefixes) {
for (let l = 1; l <= levels; l++) {
vs.push(`${v}${l}`);
}
}
let result = vs
.map(
(v) =>
`--${prefix}-${this.name}-${v}-color: var(--${prefix}-${this.varName}-${v}-color);`,
)
.join("\n");
result = `--${prefix}-${this.name}-color: var(--${prefix}-${this.varName}-color);\n${result}`;
return result;
}
}
const themeColorNames = [
"primary",
"secondary",
"tertiary",
"danger",
"success",
] as const;
type ThemeColorNames = (typeof themeColorNames)[number];
type ThemeColors = {
[key in ThemeColorNames]: HslColor;
};
// Config region begin
const prefix = "cru";
const themeColors: ThemeColors = {
primary: new HslColor(210, 100, 50),
secondary: new HslColor(40, 100, 50),
tertiary: new HslColor(160, 100, 50),
danger: new HslColor(0, 100, 50),
success: new HslColor(120, 100, 50),
};
// Config region end
let output = "";
function indentText(
text: string,
level: number,
indentWidth = 2,
appendNewlines = 1,
): string {
const lines = text.split("\n");
const indent = " ".repeat(level * indentWidth);
return (
lines
.map((line) => (line.length === 0 ? "" : `${indent}${line}`))
.join("\n") + "\n".repeat(appendNewlines)
);
}
function print(text: string, indent = 0, appendNewlines = 1) {
output += indentText(text, indent, 2, appendNewlines);
}
function generateThemeColorCss(mode: ColorMode): string {
let output = "";
for (const name of themeColorNames) {
const colorGroup = new ThemeColorGroup(name, themeColors[name]);
output += colorGroup.generateCss(prefix, mode);
}
return output;
}
function generateThemeColorAliasCss(): string {
let result = "";
for (const name of themeColorNames) {
const varColorGroup = new VarColorGroup("theme", name);
result += `.${prefix}-${name} {\n${indentText(
varColorGroup.generateCss(prefix),
1,
)}\n}\n`;
}
return result;
}
function main() {
print("/* Generated by palette.ts */\n");
print(":root {");
print(generateThemeColorCss("light"), 1);
print("}\n");
print("@media (prefers-color-scheme: dark) {");
print(":root {", 1);
print(generateThemeColorCss("dark"), 2);
print("}", 1);
print("}\n");
print(generateThemeColorAliasCss());
}
main();
process.stdout.write(output);
|