mirror of
https://github.com/xpltdco/media-rip.git
synced 2026-04-03 02:53:58 -06:00
Dark themes: - Midnight: ultra-minimal, near-black, zero effects - Hacker: green-on-black terminal, monospace, CRT scanlines - Neon: hot pink + cyan on purple-black, synthwave, heavy glow Light themes: - Paper: warm cream/sepia, serif fonts, book-like - Arctic: cool whites and icy blues, crisp and modern - Solarized: Ethan Schoonover's solarized-light palette Theme picker: - Replaced simple dark/light toggle with grouped dropdown - Themes organized by Dark / Light sections with active checkmark - Remembers last dark and light theme separately for quick toggle - Theme metadata now includes variant field for proper grouping - Custom themes default to dark variant
35 lines
866 B
CSS
35 lines
866 B
CSS
/* media.rip() — Arctic Theme
|
|
*
|
|
* Cool whites, icy blues, crisp edges.
|
|
* Modern, clean, and sharp — like fresh snow.
|
|
*/
|
|
|
|
:root[data-theme="arctic"] {
|
|
--color-bg: #f0f4f8;
|
|
--color-surface: #ffffff;
|
|
--color-surface-hover: #e8eef4;
|
|
--color-border: #c8d6e5;
|
|
|
|
--color-text: #1a2a3a;
|
|
--color-text-muted: #5a7a94;
|
|
|
|
--color-accent: #0088cc;
|
|
--color-accent-hover: #006da6;
|
|
--color-accent-secondary: #0066aa;
|
|
|
|
--color-success: #00a878;
|
|
--color-warning: #e8a317;
|
|
--color-error: #d63031;
|
|
|
|
--font-display: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
|
|
|
|
--effect-scanlines: none;
|
|
--effect-grid: none;
|
|
--effect-grid-size: 0px 0px;
|
|
--effect-glow: none;
|
|
|
|
--shadow-sm: 0 1px 3px rgba(26, 42, 58, 0.06);
|
|
--shadow-md: 0 4px 12px rgba(26, 42, 58, 0.08);
|
|
--shadow-lg: 0 8px 24px rgba(26, 42, 58, 0.12);
|
|
--shadow-glow: none;
|
|
}
|