27 lines
632 B
CSS
27 lines
632 B
CSS
/*
|
|
* GridTV Theme — Cyberpunk
|
|
* Néons rose/cyan sur noir absolu. Blade Runner.
|
|
*/
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&display=swap');
|
|
|
|
:root {
|
|
--bg: #000008;
|
|
--surface: #080010;
|
|
--surface2: #100020;
|
|
--border: #300050;
|
|
--border-bright: #6000a0;
|
|
--accent: #ff00cc;
|
|
--accent2: #00ffee;
|
|
--accent-live: #ff0040;
|
|
--text: #dd88ff;
|
|
--text-dim: #7700bb;
|
|
--text-bright: #ffddff;
|
|
--prog-bg: #0a0018;
|
|
--prog-border: #400070;
|
|
--prog-live-bg: #180030;
|
|
--prog-live-border: #ff00cc;
|
|
--font-ui: 'Rajdhani', sans-serif;
|
|
--font-mono: 'Share Tech Mono', monospace;
|
|
}
|