forked from SebastianStankiewicz/PRPortfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (27 loc) · 743 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (27 loc) · 743 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
"lofi",
"emerald",
"nord",
{
customTheme: {
secondary: "#00B3B3", // Muted green
accent: "#a0e3d4", // Soft teal
neutral: "#73C5DD", // Light blue
"base-100": "#f0fcfc", // Very light blue-green
info: "#64d1e6", // Bright blue
success: "#88f0b0", // Pastel green
warning: "#ffdf6b", // Yellow
error: "#f77d75",
},
},
],
},
};