forked from cheshire-cat-ai/admin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (53 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './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')],
darkMode: ['class', '[data-theme="dark"]'],
daisyui: {
logs: false,
themes: [
{
light: {
primary: '#0E8f7E',
secondary: '#C6FFF7',
accent: '#14CC9E',
neutral: '#383938',
'base-100': '#F4F4F5',
info: '#38BDF8',
success: '#2DC659',
warning: '#EAB308',
error: '#EF4444',
},
},
{
dark: {
primary: '#14CC9E',
secondary: '#C6FFF7',
accent: '#0E8f7E',
neutral: '#F4F4F5',
'base-100': '#383938',
info: '#38BDF8',
success: '#2DC659',
warning: '#EAB308',
error: '#EF4444',
},
},
],
},
}