-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
43 lines (43 loc) · 1.01 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
module.exports = {
darkMode: 'class',
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
sans: ["Roboto", "ui-sans-serif", "system-ui"],
serif: ["ui-serif", "Georgia"],
mono: ["Roboto Mono", "ui-monospace", "SFMono-Regular"],
display: ["Raleway"],
body: ['"Open Sans"'],
},
extend: {
animation: {
float: "float 3s linear infinite",
zoomy: "3s linear 100ms infinite alternate zoomy",
},
keyframes: {
float: {
"0%, 100%": { transform: "translateY(0%)" },
"50%": { transform: "translateY(-1.5%)" },
},
zoomy: {
"0%": {
transform: "scale(1)",
},
"33.33%": {
transform: "scale(1.01)",
},
"66.66%": {
transform: "scale(1.02)",
},
"100%": {
transform: "scale(1.03)",
},
},
},
},
},
plugins: [],
};