-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
51 lines (50 loc) · 1.38 KB
/
Copy pathtailwind.config.ts
File metadata and controls
51 lines (50 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
50
51
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
black: "var(--black)",
deep: "var(--deep)",
surface: "var(--surface)",
border: "var(--border)",
"border-light": "var(--border-light)",
gold: "var(--gold)",
"gold-dim": "var(--gold-dim)",
"gold-glow": "var(--gold-glow)",
white: "var(--white)",
muted: "var(--muted)",
text: "var(--text)",
},
fontFamily: {
display: ["var(--font-display)"],
body: ["var(--font-body)"],
mono: ["var(--font-mono)"],
},
animation: {
marquee: "marquee 30s linear infinite",
"marquee-reverse": "marquee-reverse 30s linear infinite",
"pulse-subtle": "pulse-subtle 2s ease-in-out infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-50%)" },
},
"marquee-reverse": {
"0%": { transform: "translateX(-50%)" },
"100%": { transform: "translateX(0%)" },
},
"pulse-subtle": {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0.7" },
},
},
},
},
plugins: [],
};
export default config;