-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
49 lines (48 loc) · 1 KB
/
Copy pathtailwind.config.ts
File metadata and controls
49 lines (48 loc) · 1 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
import type { Config } from "tailwindcss";
import daisyui from "daisyui";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
width: {
"96": "24.56rem",
},
fontSize: {
sm: "0.8rem",
base: "1rem",
xl: "1.25rem",
"2xl": "1.563rem",
"3xl": "1.953rem",
"4xl": "2.441rem",
"5xl": "2.813rem",
},
margin: {
"12": "2.875rem",
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
fontFamily: {
display: ["var(--ff-display)", "system-ui", "sans-serif"],
},
},
},
plugins: [daisyui],
daisyui: {
themes: [
{
mytheme: {
primary: "#51E08A",
secondary: "#FFFFFF",
"base-100": "#000C36",
info: "#3B4877",
},
},
],
},
} satisfies Config;