-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
84 lines (84 loc) · 2.15 KB
/
tailwind.config.js
File metadata and controls
84 lines (84 loc) · 2.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/**/*.{html,js,svelte,ts}'
],
theme: {
extend: {
animation: {
'gradient': 'gradient 8s ease infinite',
},
keyframes: {
gradient: {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center'
},
},
},
},
},
plugins: [
require('daisyui')
],
daisyui: {
themes: [
{
light: {
"primary": "#2563eb",
"primary-focus": "#1d4ed8",
"primary-content": "#ffffff",
"secondary": "#f000b8",
"secondary-focus": "#bd0091",
"secondary-content": "#ffffff",
"accent": "#37cdbe",
"accent-focus": "#2aa79b",
"accent-content": "#ffffff",
"neutral": "#3d4451",
"neutral-focus": "#2a2e37",
"neutral-content": "#ffffff",
"base-100": "#ffffff",
"base-200": "#f9fafb",
"base-300": "#d1d5db",
"base-content": "#1f2937",
"info": "#2094f3",
"success": "#009485",
"warning": "#ff9900",
"error": "#ff5724"
},
dark: {
"primary": "#3b82f6",
"primary-focus": "#2563eb",
"primary-content": "#ffffff",
"secondary": "#f000b8",
"secondary-focus": "#bd0091",
"secondary-content": "#ffffff",
"accent": "#37cdbe",
"accent-focus": "#2aa79b",
"accent-content": "#ffffff",
"neutral": "#2a2e37",
"neutral-focus": "#16181d",
"neutral-content": "#ffffff",
"base-100": "#1f2937",
"base-200": "#111827",
"base-300": "#374151",
"base-content": "#f3f4f6",
"info": "#2094f3",
"success": "#009485",
"warning": "#ff9900",
"error": "#ff5724"
}
}
],
darkTheme: "dark",
base: true,
styled: true,
utils: true,
prefix: "",
logs: false,
}
}