-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
68 lines (68 loc) · 1.85 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// break
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}"
],
theme: {
container: {
center: true,
padding: {
DEFAULT: "1rem",
sm: "2rem",
md: "3rem",
lg: "4rem",
xl: "5rem",
"2xl": "6rem"
}
},
extend: {
colors: {
// custom color schemes here
primary: {
purple: "#5D5CD6",
yellow: "#FFB800",
green: "#0DBF6A",
dark: "#151452",
light: "#D6D6F5",
"light-bg": "#F8F8FD",
"text-dark": "#2F2D2D",
"blue-dark": "#0D0C24"
}
},
fontFamily: {
// custom fonts here
sora: ["Sora", "sans-serif"],
rubik: ["Rubik", "sans-serif"]
}
}
},
plugins: [require("daisyui"), require("tailwind-scrollbar")],
daisyui: {
styled: true,
themes: [
{
mytheme: {
primary: "#5D5CD6",
secondary: "#0DBA67",
accent: "#FFB800",
neutral: "#1B1B1B",
"base-100": "#F3F4F6",
info: "#67E8F9",
success: "#16a34a",
warning: "#FBBF24",
error: "#EF4444"
}
},
"dark"
],
base: true,
utils: true,
logs: false,
rtl: false,
prefix: "",
darkTheme: "dark"
}
};