-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./public/index.html",
"./src/**/*.{html,js}"
],
theme: {
extend: {
fontFamily: {
'fredoka': ['Fredoka', 'sans-serif'],
'montserrat': ['Montserrat', 'sans-serif']
},
animation: {
'fade-in': 'fadeIn .2s ease-in-out forwards',
'slide-left': 'slideLeft .5s ease-out forwards'
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' }
},
slideLeft: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(0)' }
}
},
colors: {
'azul': {
100: '#CDFDFA',
200: '#9CF9FB',
300: '#6AE7F4',
400: '#44CEE9',
500: '#0DABDB',
600: '#0985BC',
700: '#06649D',
800: '#04477F',
900: '#023369'
}
}
}
},
plugins: []
};