-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
70 lines (70 loc) · 1.86 KB
/
Copy pathtailwind.config.js
File metadata and controls
70 lines (70 loc) · 1.86 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
66
67
68
69
70
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
light: {
"primary": "#10b981",
"primary-focus": "#059669",
"primary-content": "#ffffff",
"secondary": "#3b82f6",
"secondary-focus": "#2563eb",
"secondary-content": "#ffffff",
"accent": "#8b5cf6",
"accent-focus": "#7c3aed",
"accent-content": "#ffffff",
"neutral": "#1f2937",
"neutral-focus": "#111827",
"neutral-content": "#ffffff",
"base-100": "#ffffff",
"base-200": "#f9fafb",
"base-300": "#f3f4f6",
"base-content": "#1f2937",
"info": "#3b82f6",
"success": "#10b981",
"warning": "#f59e0b",
"error": "#ef4444",
},
},
{
dark: {
"primary": "#10b981",
"primary-focus": "#059669",
"primary-content": "#ffffff",
"secondary": "#3b82f6",
"secondary-focus": "#2563eb",
"secondary-content": "#ffffff",
"accent": "#8b5cf6",
"accent-focus": "#7c3aed",
"accent-content": "#ffffff",
"neutral": "#374151",
"neutral-focus": "#1f2937",
"neutral-content": "#ffffff",
"base-100": "#1f2937",
"base-200": "#111827",
"base-300": "#374151",
"base-content": "#f9fafb",
"info": "#3b82f6",
"success": "#10b981",
"warning": "#f59e0b",
"error": "#ef4444",
},
},
],
},
}