-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
41 lines (39 loc) · 992 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
41 lines (39 loc) · 992 Bytes
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
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
cyan: "var(--color-cyan)",
green: "var(--color-green)",
yellow: "var(--color-yellow)",
red: "var(--color-red)",
bg: "var(--color-bg)",
"bg-2": "var(--color-bg-2)",
"bg-3": "var(--color-bg-3)",
border: "var(--color-border)",
fg: "var(--color-fg)",
muted: "var(--color-muted)",
dim: "var(--color-dim)",
},
borderRadius: {
DEFAULT: "0",
none: "0",
sm: "0",
md: "0",
lg: "0",
xl: "0",
"2xl": "0",
"3xl": "0",
full: "0",
},
fontFamily: {
sans: ["DM Sans", "sans-serif"],
display: ["Syne", "sans-serif"],
mono: ["Space Mono", "monospace"],
},
},
},
plugins: [],
};
export default config;