-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
58 lines (57 loc) · 1.81 KB
/
tailwind.config.ts
File metadata and controls
58 lines (57 loc) · 1.81 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
52
53
54
55
56
57
58
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-inter)", "sans-serif"],
mono: ["var(--font-jetbrains-mono)", "monospace"],
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
surface: "var(--surface)",
border: "var(--border)",
muted: "var(--muted)",
accent: {
purple: "#8b5cf6",
blue: "var(--accent-blue)",
},
},
backgroundImage: {
"obsidian-gradient": "linear-gradient(to bottom, #0a0a0a, #050505)",
"stellar-gradient": "linear-gradient(to bottom right, #ffffff, #8b5cf6)",
"bento-purple": "radial-gradient(circle at 50% 50%, rgba(139,92,246,0.15) 0%, transparent 100%)",
"beam-gradient": "linear-gradient(to right, transparent, rgba(139,92,246,0.5), transparent)",
},
animation: {
"beam": "beam 3s ease-in-out infinite",
"pulse-slow": "pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite",
"float": "float 6s ease-in-out infinite",
},
keyframes: {
beam: {
"0%, 100%": { transform: "translateX(-100%)", opacity: "0" },
"50%": { opacity: "1" },
"100%": { transform: "translateX(200%)", opacity: "0" },
},
float: {
"0%, 100%": { transform: "translateY(0)" },
"50%": { transform: "translateY(-10px)" },
},
},
},
},
plugins: [],
};
export default config;