-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
67 lines (66 loc) · 1.95 KB
/
tailwind.config.js
File metadata and controls
67 lines (66 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Poppins", "sans-serif"], // Body text
heading: ["Montserrat", "sans-serif"], // UI Headings
// Custom Local Fonts
horror: ["October Crow", "cursive"], // Primary Horror Font
blood: ["Blood Crow", "cursive"], // Secondary Horror Font
},
colors: {
// Backgrounds
verse: {
void: "#000003", // Main Background
dark: "#080A0B", // Charcoal
card: "#142B20", // Dark Forest Green
overlay: "#675458", // Brownish Gray
},
// Text
mist: {
DEFAULT: "#D2D8D6", // Silver
dim: "#949494", // Gray
},
// Accents
blood: {
DEFAULT: "#B12C3E", // Primary Red
},
toxic: {
light: "#36986A", // Bright Green
dark: "#0D4F30", // Deep Green
sage: "#577062", // Muted Green
},
ocean: {
DEFAULT: "#447095", // Muted Blue
cyan: "#137394", // Bright Cyan
},
gold: {
DEFAULT: "#E9AE34",
},
},
backgroundImage: {
"hero-glow":
"radial-gradient(circle at center, rgba(54, 152, 106, 0.15) 0%, rgba(0, 0, 3, 0) 70%)",
"blood-glow":
"radial-gradient(circle at center, rgba(177, 44, 62, 0.2) 0%, rgba(0, 0, 3, 0) 70%)",
},
boxShadow: {
"neon-green": "0 0 20px rgba(54, 152, 106, 0.3)",
"neon-red": "0 0 20px rgba(177, 44, 62, 0.4)",
},
animation: {
float: "float 6s ease-in-out infinite",
"pulse-slow": "pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
keyframes: {
float: {
"0%, 100%": { transform: "translateY(0)" },
"50%": { transform: "translateY(-20px)" },
},
},
},
},
plugins: [],
};