-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
34 lines (33 loc) · 960 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/components/pages/*.{js,ts,jsx,tsx}",
"./src/components/components/**.{js,ts,jsx,tsx}",
"./src/components/**/**.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
daisyui: {
themes: [
{
black: {
...require("daisyui/src/colors/themes")["[data-theme=black]"],
primary: "#1d4ed8",
"primary-focus": "#1d4ed8",
error: "#ef4444",
'.btn': {
'text-transform': 'capitalize'
},
'.btn-primary': {
color: 'white'
},
'.btn-error': {
color: 'white'
}
},
},
]
},
plugins: [require("daisyui")],
}