-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (47 loc) · 1.3 KB
/
Copy pathtailwind.config.js
File metadata and controls
48 lines (47 loc) · 1.3 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./core/templates/**/*.html',
'./accounts/templates/**/*.html',
'./planner/templates/**/*.html',
'./reminders/templates/**/*.html',
'./accounts/forms.py',
],
// Tu tema de colores está perfecto.
theme: {
extend: {
colors: {
'background': '#0c0c0c',
'foreground': '#f8fafc',
'card': '#121212',
'card-foreground': '#f8fafc',
'primary': '#a855f7',
'primary-foreground': '#f8fafc',
'primary-hover': '#7c3aed',
'secondary': '#1e1e1e',
'secondary-foreground': '#f8fafc',
'muted': '#1e1e1e',
'muted-foreground': '#94a3b8',
'accent': '#2d2d2d',
'accent-foreground': '#f8fafc',
'destructive': '#ef4444',
'destructive-foreground': '#f8fafc',
'warning': '#f59e0b',
'warning-foreground': '#f8fafc',
'success': '#22c55e',
'success-foreground': '#f8fafc',
'border': '#2d2d2d',
'input': '#2d2d2d',
'ring': '#a855f7',
'sidebar-bg': '#211a2e',
'sidebar-border': '#2c2438',
'sidebar-muted': '#a692c9',
'sidebar-active': '#66d870',
},
borderRadius: {
'lg': '0.75rem',
}
},
},
plugins: [],
}