-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (44 loc) · 1.34 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./linktrove/**/*.html", "./linktrove/**/forms.py"],
theme: {
extend: {},
},
plugins: [require('@tailwindcss/typography'), require("daisyui")],
daisyui: {
themes: [
{
'emerald-daniel': {
'primary' : '#a6d120',
'primary-focus' : '#8fb71f',
'primary-content' : '#f9fafb',
'secondary' : '#377cfb',
'secondary-focus' : '#055bfa',
'secondary-content' : '#f9fafb',
'accent' : '#ea5234',
'accent-focus' : '#d03516',
'accent-content' : '#f9fafb',
'neutral' : '#333c4d',
'neutral-focus' : '#1f242e',
'neutral-content' : '#f9fafb',
'base-100' : '#ffffff',
'base-200' : '#f9fafb',
'base-300' : '#f0f0f0',
'base-content' : '#333c4d',
'info' : '#1c92f2',
'success' : '#009485',
'warning' : '#ff9900',
'error' : '#ff5724',
'--rounded-box': '1rem',
'--rounded-btn': '.5rem',
'--rounded-badge': '1.9rem',
'--animation-btn': '4',
'--animation-input': '0',
'--btn-text-case': 'uppercase',
'--navbar-padding': '.5rem',
'--border-btn': '1px',
},
},
],
},
}