-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
66 lines (66 loc) · 1.49 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
sans: ["Poppins"],
serif: ["Latin CG Bold"],
mono: ["Inconsolata"],
},
fontSize: {
"3.5xl": ["2rem", "2.375rem"],
"4.5xl": ["2.625rem", 1],
"5.5xl": ["3.375rem", 1],
"10xl": "10rem",
"11xl": "11rem",
"12xl": "12rem",
"13xl": "13rem",
"14xl": "14rem",
"2xs": ["0.625rem", "0.75rem"],
},
screens: {
// 'sm': '640px',
// 'md': '768px',
// 'lg': '1024px',
// 'xl': '1280px',
// '2xl': '1536px',
"3xl": "1792px",
"4xl": "2048px",
"5xl": "2304px",
"6xl": "2560px",
"7xl": "2816px",
"8xl": "3072px",
"9xl": "3328px",
"10xl": "3584px",
},
spacing: {
84: "21rem",
88: "22rem",
92: "23rem",
104: "26rem",
112: "28rem",
120: "30rem",
128: "32rem",
144: "36rem",
160: "40rem",
176: "44rem",
192: "48rem",
208: "52rem",
224: "56rem",
240: "60rem",
256: "64rem",
288: "72rem",
304: "76rem",
320: "80rem",
336: "84rem",
352: "88rem",
368: "92rem",
384: "96rem",
448: "112rem",
512: "128rem",
},
},
},
plugins: [],
};