-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
49 lines (46 loc) · 1.08 KB
/
tailwind.config.ts
File metadata and controls
49 lines (46 loc) · 1.08 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
base: "#0a0a1a",
primary: "#00ffff",
secondary: "#ff00ff",
accent: "#ffffff",
},
fontFamily: {
sans: ['"Exo 2"', "sans-serif"],
mono: ['"Space Grotesk"', "monospace"],
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
pulseGlow: {
"0%, 100%": {
boxShadow:
"0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #ff00ff",
opacity: "0.8",
},
"50%": {
boxShadow:
"0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #ff00ff",
opacity: "1",
},
},
},
animation: {
fadeIn: "fadeIn 1s ease-in-out",
pulseGlow: "pulseGlow 4s ease-in-out infinite",
},
},
},
plugins: [],
};
export default config;