-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
86 lines (85 loc) · 1.68 KB
/
tailwind.config.ts
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
import { type Config } from "tailwindcss";
export default {
content: [
"{components,routes,islands,routes,utils}/**/*.{ts,tsx,js,jsx}",
],
darkMode: "selector",
theme: {
fontFamily: {
sans: ["JetbrainsMono", "sans-serif"],
},
fontSize: {
html: "62.5%",
xs: "1.4rem",
sm: "1.6rem",
md: "2.1rem",
lg: "3rem",
xl: "5rem",
},
fontWeight: {
bold: "700",
regular: "400",
},
screens: {
lg: { max: "1040px" },
md: { max: "768px" },
sm: { max: "640px" },
},
maxWidth: {
xl: "1000px",
experience: "550px",
},
extend: {
colors: {
gray: {
DEFAULT: "#111111",
light: "#888888",
dark: "#222222",
},
},
gridTemplateColumns: {
desktop: "min-content auto",
},
spacing: {
0: "0",
0.1: "0.1rem",
0.2: "0.2rem",
0.3: "0.3rem",
0.4: "0.4rem",
0.5: "0.5rem",
0.6: "0.6rem",
0.7: "0.7rem",
0.8: "0.8rem",
0.9: "0.9rem",
1: "1rem",
1.5: "1.5rem",
2: "2rem",
2.1: "2.1rem",
3: "3rem",
4: "4rem",
5: "5rem",
5.5: "5.5rem",
6: "6rem",
7: "7rem",
7.5: "7.5rem",
8: "8rem",
9: "9rem",
10: "10rem",
12: "12rem",
15: "15rem",
16: "16rem",
20: "20rem",
25: "25rem",
30: "30rem",
38: "38rem",
40: "40rem",
50: "50rem",
60: "60rem",
70: "70rem",
80: "80rem",
90: "90rem",
100: "100rem",
},
},
},
} satisfies Config;