-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
67 lines (54 loc) · 1.68 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
/* eslint-disable */
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
content: ['./src/**/*.{ts,tsx}'],
prefix: '',
safelist: [],
theme: {
fontFamily: {
inter: ['Inter', 'sans-serif']
}
},
plugins: [require('daisyui'), require('tailwindcss-animate')],
daisyui: {
themes: [
{
awell: {
primary: colors.blue[700],
'primary-focus': colors.blue[800],
'primary-content': colors.white,
secondary: colors.white,
'secondary-focus': colors.slate[100],
'secondary-content': colors.slate[600],
accent: colors.blue[50],
'accent-focus': colors.blue[100],
'accent-content': colors.blue[600],
neutral: colors.slate[700],
'neutral-focus': colors.slate[800],
'neutral-content': colors.white,
success: colors.green[600],
'success-content': colors.white,
info: colors.blue[600],
'info-content': colors.white,
warning: colors.orange[600],
'warning-content': colors.white,
error: colors.red[600],
'error-content': colors.white,
'base-100': colors.white,
'base-200': colors.slate[100],
'base-300': colors.slate[300],
'base-content': colors.slate[600],
'--rounded-box': '1rem',
'--rounded-btn': '.5rem',
'--rounded-badge': '1.9rem',
'--animation-btn': '.25s',
'--animation-input': '.2s',
'--btn-text-case': 'uppercase',
'--navbar-padding': '.5rem',
'--border-btn': '1px'
}
}
]
}
};