-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
59 lines (58 loc) · 1.64 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
import plugin from 'tailwindcss/plugin'
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
fontFamily: {
tituloClient: ['Newake', 'sans-serif'],
// titulo: ['Poppins', 'sans-serif'],
// titulo: ['DM Sans', 'sans-serif'],
// parrafo: ['Rubik', 'sans-serif']
titulo: ['Montserrat', 'sans-serif'],
parrafo: ['Montserrat', 'sans-serif']
},
colors: {
verdeTurk: 'var(--verde-turk)',
verdeMok: 'var(--verde-mok)',
verdeMok2: 'var(--verde-mok2)',
purpleBal: 'var(--purple-bal)',
blackBl: 'var(--black-bl)',
whiteWi: 'var(--white-wi)',
textPurple: 'var(--text-purple)',
bgForm: 'var(--bg-form)'
}
}
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
'.botonVerde': {
backgroundColor: 'var(--verde-turk)',
color: 'var(--white-wi)',
border: '2px solid var(--verde-mok)',
borderRadius: '40px',
'&:hover': {
backgroundColor: 'var(--white-wi)',
color: 'var(--verde-turk)',
border: '2px solid var(--verde-turk)'
}
},
'.botonWhite': {
backgroundColor: 'var(--white-wi)',
color: 'var(--verde-turk)',
border: '2px solid var(--verde-turk)',
borderRadius: '40px',
'&:hover': {
backgroundColor: 'var(--verde-turk)',
color: 'var(--white-wi)',
border: '2px solid var(--white-wi)'
}
}
})
})
]
}