-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) 路 1.04 KB
/
Copy pathtailwind.config.js
File metadata and controls
39 lines (39 loc) 路 1.04 KB
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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-5deg)" },
"50%": { transform: "rotate(5deg)" },
},
disappear: {
"50%": { opacity: 1 },
"80%": { opacity: 0 },
"100%": { "z-index": -1 },
},
appear: {
"0%": { opacity: 0 },
"90%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
},
colors: {
white: "#ffffff",
black: "#000000",
green: "#17B890",
blue: "#0056F5",
orange: "#EE6055",
},
fontFamily: {
title: ["Montserrat"],
subtitle: ["Oxygen"],
},
},
plugins: [],
};