-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
26 lines (25 loc) · 912 Bytes
/
tailwind.config.ts
File metadata and controls
26 lines (25 loc) · 912 Bytes
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
import type { Config } from "tailwindcss";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
cyber: {
violet: "#5b21b6",
gold: "#ffd700",
ink: "#0b0b0f",
neonRed: "#ff2a6d",
neonGreen: "#05f7b7"
}
},
boxShadow: {
neonRed: "0 0 0 1px rgba(255,42,109,.7), 0 0 22px rgba(255,42,109,.25)",
neonGreen: "0 0 0 1px rgba(5,247,183,.7), 0 0 22px rgba(5,247,183,.25)"
},
backgroundImage: {
"cyber-gradient": "radial-gradient(60% 60% at 10% 10%, rgba(245,158,11,.20), transparent 60%), radial-gradient(60% 60% at 90% 20%, rgba(255,42,109,.18), transparent 60%), radial-gradient(60% 60% at 50% 90%, rgba(5,247,183,.12), transparent 60%), linear-gradient(180deg, rgba(91,33,182,.22), rgba(0,0,0,.80))"
}
}
},
plugins: []
} satisfies Config;