-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 1.16 KB
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
neon: {
cyan: "#00f3ff",
pink: "#ff00ff",
purple: "#bc13fe",
green: "#0aff0a",
black: "#0a0a0a",
dark: "#111111",
},
surface: {
100: "rgba(255, 255, 255, 0.05)",
200: "rgba(255, 255, 255, 0.1)",
glass: "rgba(20, 20, 20, 0.6)",
},
},
fontFamily: {
orbitron: ['"Orbitron"', "sans-serif"],
inter: ['"Inter"', "sans-serif"],
},
animation: {
"pulse-fast": "pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite",
scan: "scan 3s linear infinite",
},
keyframes: {
scan: {
"0%": { top: "0%" },
"100%": { top: "100%" },
},
},
},
},
plugins: [],
};