16 lines
415 B
CSS
16 lines
415 B
CSS
:root {
|
|
--primary-color: #00ffff;
|
|
--secondary-color: #ff00ff;
|
|
--background-color: #0d0d0d;
|
|
--text-color: #f0f0f0;
|
|
--overlay-background: rgba(0, 0, 0, 0.85);
|
|
--button-background: #ff00ff;
|
|
--button-hover-background: #00ffff;
|
|
--scanline-color: rgba(255, 255, 255, 0.05);
|
|
--glow-color: rgba(0, 255, 255, 0.3);
|
|
--terminal-background: rgba(0, 0, 0, 0.9);
|
|
--terminal-border: #ff00ff;
|
|
--border-radius: 1.5%;
|
|
}
|
|
|