-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 840 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 840 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./public/index.html"
],
theme: {
extend: {
colors: {
brand: {
primary: '#2A6CC8', // Azul oscuro
secondary: '#63B3ED', // Azul claro
success: '#48BB78', // Verde
warning: '#ED8936', // Naranja
danger: '#F56565', // Rojo
},
},
},
},
safelist: [
'text-brand-primary',
'text-brand-secondary',
'text-brand-success',
'text-brand-warning',
'text-brand-danger',
'bg-brand-primary',
'bg-brand-secondary',
'bg-brand-success',
'bg-brand-warning',
'bg-brand-danger',
'bg-opacity-10',
'bg-blue-100',
'bg-green-100',
'bg-red-100',
'bg-purple-100',
],
plugins: [],
}