-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (36 loc) · 928 Bytes
/
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
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [
'./components/**/*.{vue,js}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
],
theme: {
extend: {
fontFamily: {
'sans2': ['Helvetica Neue', ],
},
colors: {
'primary-blue': '#011F4B',
'secondary-blue': '#6DBBD9',
'button-blue': '#39BDEE',
'text-blue': '#114178',
'footer-blue': '#082f63',
'hover-blue': '#226EDB'
},
backgroundImage: theme => ({
'top-circles': "url('~assets/img/top_circles.svg')",
'middle-circles': "url('~assets/img/middle_circles.svg')",
'footer_circles': "url('~assets/img/footer_circles.svg')"
})
},
variants: {},
plugins: [],
}
}
/* #093163 #072C5C #114077 color del circulo superior: #082f63 */