-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
46 lines (45 loc) · 1 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
/** @type {import('tailwindcss').Config} */
export default {
plugins: [],
content: [],
theme: {
extend: {
spacing: {
1: "0.5rem",
2: "1rem",
3: "1.5rem",
4: "2rem",
5: "2.5rem",
6: "3rem",
7: "3.5rem",
8: "4rem",
9: "4.5rem",
10: "5rem",
app_width_limit: "min(97vw, 1400px)",
res_width: "min(97vw, 1224px)"
},
fontSize: {
small: "1rem",
medium: "2rem",
large: "3rem"
},
colors: {
lite_gray: "#c9ced6",
disable_btn: "#16347d",
app_border: "#c9ced6",
lite_blue: "#1d9bf0",
main_blue: "#144ee3",
main_pink: "#e95690",
main_bg: "#0b101b",
item_border: "#c9ced6",
bg_blure: "#0b101b11",
bg_gray: "#181e29",
}
},
},
purge: ["./index.html", './src/**/*.{svelte,js,ts}'], // to clean up unused CSS
variants: {
extend: {},
},
// darkMode: false, // or 'media' or 'class'
}