-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (108 loc) · 3.55 KB
/
index.html
File metadata and controls
118 lines (108 loc) · 3.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!--
Copyright (c) 2026 Ashraf Morningstar
These are personal recreations of existing projects, developed by Ashraf Morningstar
for learning and skill development.
Original project concepts remain the intellectual property of their respective creators.
Repository: https://github.com/AshrafMorningstar
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chroma V2.0 - Enterprise Color Suite</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<!-- FontAwesome CDN (Legacy Support) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* NEON-GLASS FUTURISTIC THEME INJECTED BY MASTER BOT */
:root {
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
--neon-cyan: #00f3ff;
--neon-purple: #bc13fe;
--deep-space: #050510;
--text-glow: 0 0 10px rgba(0, 243, 255, 0.5);
}
body {
background-color: var(--deep-space);
color: #e0e0ff;
font-family: 'Inter', 'Roboto', sans-serif;
background-image:
radial-gradient(circle at 15% 50%, rgba(188, 19, 254, 0.1), transparent 25%),
radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.1), transparent 25%);
min-height: 100vh;
margin: 0;
overflow-x: hidden;
}
/* Glassmorphism Containers */
.card, .container, section, header, footer, div[class*="box"], div[class*="wrapper"] {
background: var(--glass-bg);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
border-radius: 16px;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* Hover Effects */
.card:hover, .container:hover, button:hover {
transform: translateY(-5px) scale(1.02);
box-shadow: 0 12px 40px 0 rgba(0, 243, 255, 0.2);
border-color: var(--neon-cyan);
}
/* Futuristic Buttons */
button, .btn, a.button {
background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
border: 1px solid var(--neon-cyan);
color: var(--neon-cyan);
padding: 12px 24px;
border-radius: 8px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
text-shadow: 0 0 5px var(--neon-cyan);
}
button:hover, .btn:hover {
background: var(--neon-cyan);
color: var(--deep-space);
box-shadow: 0 0 20px var(--neon-cyan);
}
/* Text Glow */
h1, h2, h3, h4, h5, h6 {
text-transform: uppercase;
letter-spacing: 2px;
background: linear-gradient(90deg, #fff, #aaa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0px 0px 15px rgba(255,255,255,0.3);
}
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--deep-space);
}
::-webkit-scrollbar-thumb {
background: var(--neon-purple);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--neon-cyan);
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>