-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemeGenerator.cjs
89 lines (82 loc) · 1.74 KB
/
themeGenerator.cjs
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
const colors = require("tailwindcss/colors");
function toRgb(hex) {
if (hex.length === 4) {
hex = '#' + hex[1] + hex[1] + hex[2] + hex[2] + hex[3] + hex[3]
}
const red = parseInt(hex[1] + hex[2], 16)
const green = parseInt(hex[3] + hex[4], 16)
const blue = parseInt(hex[5] + hex[6], 16)
return `${red} ${green} ${blue}`
}
function getColor(name) {
const parts = name.split('.')
let current = colors
parts.forEach(part => {
current = current[part]
})
if (current) {
return toRgb(current)
}
}
function getTheme(prop, type) {
const { basic, mode, level } = prop
return `
/* ${type.toUpperCase()} */
[data-theme="${type}"] {
${Object.keys(basic[type]).map(name => {
return ` --color-${name} : ${getColor(basic[type][name])};`
}).join("\r\n")}
${Object.keys(mode).map(name => {
const color = mode[name]
return level[type].map((lvl, i) => {
return ` --color-${name}-${i + 1} : ${getColor(`${color}.${lvl}`)};`
}).join("\r\n")
}).join("\r\n\r\n")}
}`
}
function themeGenerator() {
const basic = {
light: {
default: "white",
offset: "gray.200",
base: "white",
},
dark: {
default: "gray.900",
offset: "gray.700",
base: "slate.800",
},
}
const mode = {
base: "slate",
primary: "blue",
secondary: "cyan",
success: "emerald",
warning: "amber",
error: "rose",
}
const level = {
light: [
"50",
"200",
"500",
"600",
"700"]
,
dark: [
"800",
"700",
"600",
"300",
"200",
],
}
return `
/* Tawasukha UI Theme
* Author : Forte Zhuo
*/
${getTheme({ basic, mode, level }, 'light')}
${getTheme({ basic, mode, level }, 'dark')}
`
}
console.log(themeGenerator())