-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
60 lines (59 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{html,js,ts,vue}',
],
theme: {
extend: {
transitionProperty: {
'height': 'height',
'spacing': 'margin, padding',
'width': 'width',
'fadetransform': 'opacity, transform',
},
maxWidth: {
'1/2': '50%',
},
minWidth: {
'1/2': '50%',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('daisyui'),
require('@tailwindcss/container-queries')
],
darkMode: ['class', '[data-theme="dark"]'],
daisyui: {
logs: false,
themes: [
{
light: {
"primary": "#4169E1",
"secondary": "#3454B4",
"accent": "#E39476",
"neutral": "#383938",
"base-100": "#F4F4F5",
"info": "#38BDF8",
"success": "#2DC659",
"warning": "#EAB308",
"error": "#EF4444",
},
},
{
dark: {
"primary": "#E39476",
"secondary": "#B5765E",
"accent": "#4169E1",
"neutral": "#F4F4F5",
"base-100": "#383938",
"info": "#38BDF8",
"success": "#2DC659",
"warning": "#EAB308",
"error": "#EF4444",
},
},
],
},
}