Upload folder using huggingface_hub
Browse files- client/public/icons/cyberpunk, arm, prosthetic, tech, robot.svg +7 -0
- client/public/icons/cyberpunk, augmentation, human, tech, cybernetic.svg +7 -0
- client/public/icons/cyberpunk, billboard, city, ad, neon.svg +9 -0
- client/public/icons/cyberpunk, brain, ai, tech, intelligence.svg +7 -0
- client/public/icons/cyberpunk, car, hover, future, vehicle.svg +11 -0
- client/public/icons/cyberpunk, circuit, tech, neon, system.svg +7 -0
- client/public/icons/cyberpunk, city, neon, skyline, future.svg +31 -0
- client/public/icons/cyberpunk, drone, camera, surveillance, tech.svg +8 -0
- client/public/icons/cyberpunk, dystopia, propaganda, poster, city.svg +10 -0
- client/public/icons/cyberpunk, eye, implant, vision, scan.svg +7 -0
- client/public/icons/cyberpunk, hacker, mask, anonymity, tech.svg +9 -0
- client/public/icons/cyberpunk, jacket, led, clothes, neon.svg +7 -0
- client/public/icons/cyberpunk, katana, weapon, sword, neon.svg +6 -0
- client/public/icons/cyberpunk, neon, sign, light, urban.svg +8 -0
- client/public/icons/cyberpunk, vr, virtual, headset, tech.svg +6 -0
- client/public/icons/tattoo, neon, cyberpunk, body, circuit.svg +8 -0
- client/src/components/Layout.tsx +2 -2
- client/tailwind.config.js +1 -0
client/public/icons/cyberpunk, arm, prosthetic, tech, robot.svg
ADDED
|
|
client/public/icons/cyberpunk, augmentation, human, tech, cybernetic.svg
ADDED
|
|
client/public/icons/cyberpunk, billboard, city, ad, neon.svg
ADDED
|
|
client/public/icons/cyberpunk, brain, ai, tech, intelligence.svg
ADDED
|
|
client/public/icons/cyberpunk, car, hover, future, vehicle.svg
ADDED
|
|
client/public/icons/cyberpunk, circuit, tech, neon, system.svg
ADDED
|
|
client/public/icons/cyberpunk, city, neon, skyline, future.svg
ADDED
|
|
client/public/icons/cyberpunk, drone, camera, surveillance, tech.svg
ADDED
|
|
client/public/icons/cyberpunk, dystopia, propaganda, poster, city.svg
ADDED
|
|
client/public/icons/cyberpunk, eye, implant, vision, scan.svg
ADDED
|
|
client/public/icons/cyberpunk, hacker, mask, anonymity, tech.svg
ADDED
|
|
client/public/icons/cyberpunk, jacket, led, clothes, neon.svg
ADDED
|
|
client/public/icons/cyberpunk, katana, weapon, sword, neon.svg
ADDED
|
|
client/public/icons/cyberpunk, neon, sign, light, urban.svg
ADDED
|
|
client/public/icons/cyberpunk, vr, virtual, headset, tech.svg
ADDED
|
|
client/public/icons/tattoo, neon, cyberpunk, body, circuit.svg
ADDED
|
|
client/src/components/Layout.tsx
CHANGED
|
@@ -185,10 +185,10 @@ const Layout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
|
|
| 185 |
key={item.name}
|
| 186 |
to={item.href}
|
| 187 |
className={`flex items-center px-3 py-2 rounded-lg text-[0.95rem] font-medium transition-colors ${
|
| 188 |
-
isActive ? 'bg-ui-bg text-ui-text shadow-[0_0_6px_rgba(
|
| 189 |
}`}
|
| 190 |
>
|
| 191 |
-
<item.icon className="h-5 w-5 mr-3 text-ui-
|
| 192 |
<span>{item.name}</span>
|
| 193 |
</Link>
|
| 194 |
);
|
|
|
|
| 185 |
key={item.name}
|
| 186 |
to={item.href}
|
| 187 |
className={`flex items-center px-3 py-2 rounded-lg text-[0.95rem] font-medium transition-colors ${
|
| 188 |
+
isActive ? 'bg-ui-bg text-ui-text shadow-[0_0_6px_rgba(15,148,168,0.6)]' : 'text-ui-text/80 hover:bg-ui-panel/60'
|
| 189 |
}`}
|
| 190 |
>
|
| 191 |
+
<item.icon className="h-5 w-5 mr-3 text-ui-neonCyan" />
|
| 192 |
<span>{item.name}</span>
|
| 193 |
</Link>
|
| 194 |
);
|
client/tailwind.config.js
CHANGED
|
@@ -21,6 +21,7 @@ module.exports = {
|
|
| 21 |
neonPink: '#FF2DAC', // neon primary
|
| 22 |
neonCyan: '#14BBD2', // darker cyan for better contrast
|
| 23 |
neonBlue: '#0EA5E9', // further darkened option for solid fills
|
|
|
|
| 24 |
neonLime: '#C7FF41', // highlights
|
| 25 |
magenta: '#D700FF', // accents
|
| 26 |
warning: '#FFB020', // warnings
|
|
|
|
| 21 |
neonPink: '#FF2DAC', // neon primary
|
| 22 |
neonCyan: '#14BBD2', // darker cyan for better contrast
|
| 23 |
neonBlue: '#0EA5E9', // further darkened option for solid fills
|
| 24 |
+
neonCyanDark: '#0F94A8', // darker cyan for active glows
|
| 25 |
neonLime: '#C7FF41', // highlights
|
| 26 |
magenta: '#D700FF', // accents
|
| 27 |
warning: '#FFB020', // warnings
|