-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.39 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,jsx}",
"./components/**/*.{js,jsx}",
],
theme: {
fontFamily: {
custom1 : ["custom1", "sans-serif"],
},
extend: {
colors: {
'fdyellowbright': '#FFF6DB',
'fdyellowlight': '#FFE7A4',
'fdyellow': '#ffd259',
'fdyellowdark': '#F0B718',
'fdbluebright': '#DAE9FA',
'fdbluelight': '#ACC5E1',
'fdblue': '#7892b0',
'fdbluedark': '#47668A',
},
keyframes: {
wave: {
'0%': { transform: 'rotate(0.0deg)' },
'10%': { transform: 'rotate(14deg)' },
'20%': { transform: 'rotate(-8deg)' },
'30%': { transform: 'rotate(14deg)' },
'40%': { transform: 'rotate(-4deg)' },
'50%': { transform: 'rotate(10.0deg)' },
'60%': { transform: 'rotate(0.0deg)' },
'100%': { transform: 'rotate(0.0deg)' },
},
},
animation: {
'waving-hand': 'wave 2s linear infinite',
},
height: {
"10v": "10vh",
"20v": "20vh",
"30v": "30vh",
"40v": "40vh",
"50v": "50vh",
"60v": "60vh",
"70v": "70vh",
"80v": "80vh",
"90v": "90vh",
"100v": "100vh",
},
}
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
],
}