-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (53 loc) · 1.39 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
module.exports = {
content: ["./**/*.{html,js}"],
theme: {
fontFamily: {
body: ['Vazir', 'sans-serif'],
display: ['Vazir', 'sans-serif']
},
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
'samad': {
'primary': '#ffc107',
'primary-focus': '#ffc107',
'primary-content': '#ffffff',
'secondary': '#5513AD',
'secondary-focus': '#410B88',
'secondary-content': '#ffffff',
'accent': '#0F63A4',
'accent-focus': '#084C81',
'accent-content': '#ffffff',
'neutral': '#888888',
'neutral-focus': '#0A0A1A',
'neutral-content': '#ffffff',
'base-100': '#0A0A1A',
'base-300': '#191923',
'base-200': '#111120',
'base-content': '#ffffff',
'info': '#66c7ff',
'success': '#87cf3a',
'warning': '#e1d460',
'error': '#ff6b6b',
'--rounded-box': '1rem',
'--rounded-btn': '0.5rem',
'--rounded-badge': '1.9rem',
'--animation-btn': '0.25s',
'--animation-input': '0.2s',
'--btn-text-case': 'uppercase',
'--navbar-padding': '0.5rem',
'--border-btn': '1px',
},
}
],
styled: true,
base: true,
utils: true,
logs: true,
rtl: true,
darkTheme: "dark",
},
}