-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
40 lines (40 loc) · 1.13 KB
/
Copy pathtailwind.config.cjs
File metadata and controls
40 lines (40 loc) · 1.13 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
40
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./**/*.tsx", "./**/*.res.mjs"],
theme: {
extend: {
colors: {
cinema: {
amber: "#f59e0b",
orange: "#f97316",
gold: "#fbbf24",
black: "#09090b",
},
},
animation: {
"light-swing": "swing 5s infinite",
},
keyframes: {
swing: {
"0%, 100%": { transform: "rotate(9deg)" },
"50%": { transform: "rotate(5deg)" },
},
"cinema-pulse": {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0.5" },
},
"cinema-slide-up": {
from: { opacity: "0", transform: "translateY(20px)" },
to: { opacity: "1", transform: "translateY(0)" },
},
},
fontFamily: {
virgin: ["Virgil", "Comic Sans MS", "Bradley Hand", "cursive"],
display: ["Bebas Neue", "sans-serif"],
mono: ["JetBrains Mono", "monospace"],
body: ["Outfit", "system-ui", "-apple-system", "sans-serif"],
},
},
},
plugins: [require("@tailwindcss/container-queries")],
};