-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (35 loc) · 962 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"gray-beige-100": "#F5F3F0",
"gray-beige-200": "#E0D9D0",
},
fontFamily: {
montserrat: '"Montserrat", "serif"',
inconsolata: '"Inconsolata", "serif"',
indieFlower: '"Indie Flower", "cursive"',
},
screens: {
500: "500px",
},
keyframes: {
textFocus: {
"0%, 100%": { transform: "scale(1)", opacity: "0.7" },
"50%": { transform: "scale(1.5)", opacity: "1", color: "#991B1B" },
},
wiggle: {
"0%, 100%": { transform: "rotate(-3deg)" },
"50%": { transform: "rotate(3deg)" },
},
},
animation: {
textFocus: "textFocus 3s ease-in-out infinite",
wiggle: "wiggle 1s ease-in-out infinite",
},
},
},
plugins: [],
};