-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
102 lines (86 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.html", "./src/*.css"],
theme: {
extend: {
colors: {
"banchan-green": "#96e9d3",
"banchan-green-accent": "#359655"
}
},
},
daisyui: {
themes: [
{
'light': {
'primary' : '#66cc8a',
'primary-focus' : '#41be6d',
'primary-content' : '#f9fafb',
'secondary' : '#5a7c65',
'secondary-focus' : '#48604f',
'secondary-content' : '#f9fafb',
'accent' : '#ea5234',
'accent-focus' : '#d03516',
'accent-content' : '#f9fafb',
'neutral' : '#333c4d',
'neutral-focus' : '#1f242e',
'neutral-content' : '#f9fafb',
'base-100' : '#ffffff',
'base-200' : '#f9fafb',
'base-300' : '#f0f0f0',
'base-content' : '#333c4d',
'info' : '#1c92f2',
'success' : '#009485',
'warning' : '#ff9900',
'error' : '#ff5724',
'--rounded-box': '1rem',
'--rounded-btn': '0.5rem',
'--rounded-badge': '1.9rem',
'--animation-btn': '0',
'--animation-input': '0',
'--btn-text-case': 'uppercase',
'--navbar-padding': '0.5rem',
'--border-btn': '1px',
},
},
{
'dark': {
'primary' : '#5db776',
'primary-focus' : '#239261',
'primary-content' : '#ffffff',
'secondary' : '#418052',
'secondary-focus' : '#186644',
'secondary-content' : '#ffffff',
'accent' : '#d99330',
'accent-focus' : '#b57721',
'accent-content' : '#ffffff',
'neutral' : '#2a2e37',
'neutral-focus' : '#16181d',
'neutral-content' : '#ffffff',
'base-100' : '#3b424e',
'base-200' : '#2a2e37',
'base-300' : '#16181d',
'base-content' : '#ebecf0',
'info' : '#66c7ff',
'success' : '#87cf3a',
'warning' : '#e1d460',
'error' : '#ff6b6b',
'--rounded-box': '1rem',
'--rounded-btn': '0.5rem',
'--rounded-badge': '1.9rem',
'--animation-btn': '0.25s',
'--animation-input': '0.2s',
'--btn-text-case': 'uppercase',
'--navbar-padding': '0.5rem',
'--border-btn': '1px',
},
},
],
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('daisyui')
],
}