-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
50 lines (44 loc) · 1014 Bytes
/
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
import type { Config } from "tailwindcss";
import { neutral } from "tailwindcss/colors";
export default {
content: {
files: ["./src/**/*.{js,ts,jsx,tsx}"],
},
theme: {
colors: {
transparent: "transparent",
white: "#ffffff",
black: "#000000",
blue: "#1d4ed8",
green: "#15803d",
gray: neutral,
},
fontSize: {
"sm": "0.8rem",
"base": "1rem",
"lg": "1.125rem",
"xl": "1.25rem",
"2xl": "1.5rem",
"3xl": ["2rem", { lineHeight: "1" }],
},
fontFamily: {
sans: ["Ubuntu", "sans-serif"],
},
screens: {
"2xl": { max: "1535px" },
"xl": { max: "1279px" },
"lg": { max: "1023px" },
"md": { max: "767px" },
"sm": { max: "639px" },
},
boxShadow: {
DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
},
borderRadius: {
DEFAULT: "0.25rem",
lg: "0.5rem",
full: "9999px",
},
},
plugins: [],
} satisfies Config;