-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
executable file
·65 lines (65 loc) · 1.48 KB
/
Copy pathtailwind.config.js
File metadata and controls
executable file
·65 lines (65 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
epilogue: ["Epilogue", "sans-serif"],
},
colors: {},
screens: {
xs: "400px",
},
boxShadow: {
secondary: "10px 10px 20px rgba(2, 2, 2, 0.25)",
},
translate: ["group-hover", "group-focus"],
},
},
daisyui: {
themes: [
{
light: {
primary: "#16a34a",
secondary: "#0ea5e9",
accent: "#8b5cf6",
neutral: "#111827",
"base-100": "#f9fafb",
"base-200": "#f3f4f6",
"base-300": "#e5e7eb",
"base-content": "#111827",
info: "#38bdf8",
success: "#22c55e",
warning: "#f59e0b",
error: "#ef4444",
},
},
{
dark: {
primary: "#22c55e",
secondary: "#38bdf8",
accent: "#a78bfa",
neutral: "#1f2937",
"base-100": "#13131a",
"base-200": "#1c1c24",
"base-300": "#2c2f32",
"base-content": "#ffffff",
info: "#0ea5e9",
success: "#16a34a",
warning: "#fbbf24",
error: "#f87171",
},
},
],
darkTheme: "dark",
base: true,
utils: true,
logs: false,
styled: true,
},
plugins: [require("daisyui")],
};