forked from glaciyan/gscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
74 lines (71 loc) · 2.29 KB
/
tailwind.config.js
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
const colors = require("tailwindcss/colors");
module.exports = {
mode: "jit",
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./twSafeList.txt",
],
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {
screens: {
maxsm: { max: "639px" },
maxlg: { max: "1023px" },
},
colors: {
gray: colors.trueGray,
indigo: colors.indigo,
amber: colors.amber,
orange: colors.orange,
gscale: {
dark: {
background: {
ternary: "#18191B",
ternary500: "#1d1e20",
secondary: "#252527",
500: "#373739",
primary: "#2F3033",
},
text: {
ternary: "#8A8C8F",
secondary: "#C9CBCF",
primary: "#F4F4F4",
},
},
},
genshin: {
element: {
anemo: "#80FFD7",
pyro: "#FF9999",
electro: "#FFACFF",
geo: "#FFE667",
cryo: "#99FFFF",
hydro: "#80C0FF",
},
dark: {
element: {
anemo: "#2FD09A",
pyro: "#FF5C5C",
electro: "#E368E3",
geo: "#edad54",
cryo: "#57cbcb",
hydro: "#3D9EFF",
},
},
rarity: {
1: "#757575",
2: "#6FD1A2",
3: "#5AA6E0",
4: "#B07DE6",
5: "#F08E3A",
},
},
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/aspect-ratio"), require("@tailwindcss/line-clamp")],
};