This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
98 lines (91 loc) · 2.08 KB
/
Copy pathtailwind.config.ts
File metadata and controls
98 lines (91 loc) · 2.08 KB
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
90
91
92
93
94
95
96
97
98
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
'background': "var(--background)",
'foreground': "var(--foreground)",
'primary': "var(--primary)",
'overlay': "var(--overlay)",
'overlay-2': "var(--overlay-2)",
'overlay-3': "var(--overlay-3)",
'overlay-bright': "var(--overlay-bright)",
'outline': "var(--outline)",
'outline2': "var(--outline2)",
'success-bg': "var(--success-bg)",
'success': "var(--success)",
'failure-bg': "var(--failure-bg)",
'failure': "var(--failure)",
'mixed': "var(--mixed)",
'navbar': "var(--navbar)",
},
fontWeight: {
thin: "100",
extralight: "200",
light: "300",
normal: "400",
medium: "500",
semibold: "600",
bold: "700",
extrabold: "800",
black: "900",
},
},
borderRadius: {
DEFAULT: "0.5rem",
sms: "0.1rem",
sm: "0.125rem",
sml: "0.25rem",
mds: "0.3rem",
md: "0.375rem",
mdl: "0.5rem",
lgs: "0.75rem",
lg: "1rem",
xl: "2rem",
full: "9999px",
},
fontSize: {
xs: "0.75rem",
sm: "0.875rem",
base: "1rem",
mds: "1.05rem",
md: "1.105rem",
mdl: "1.1rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "1.875rem",
"4xl": "2.25rem",
},
fontWeight: {
thin: "100",
extralight: "200",
light: "300",
normal: "400",
medium: "500",
semibold: "600",
bold: "700",
extrabold: "800",
black: "900",
},
outlineWidth: {
DEFAULT: "2px",
1: "1px",
1.25: "1.25px",
1.5: "1.5px",
1.75: "1.75px",
2: "2px",
3: "3px",
4: "4px",
6: "6px",
8: "8px",
},
},
plugins: [],
};
export default config;