forked from corshidan/globalScopeFE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 900 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
35
36
37
38
39
40
41
42
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {
animation: ['hover'],
},
},
plugins: [require('daisyui')],
daisyui: {
themes: [
{
mytheme: {
primary: '#570df8',
'primary-focus': '#4506cb',
'primary-content': '#ffffff',
secondary: '#f000b8',
'secondary-focus': '#bd0091',
'secondary-content': '#ffffff',
accent: '#34d399',
'accent-focus': '#059669',
'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',
},
},
],
},
};