/* Palette: Night Mode (OLED)
 * OLED optimized. Pure black with neon edges—feels weightless on modern displays.
 *
 * Copyright (c) 2025 vacui.dev, all rights reserved */
:root {
  --bg-color: #000000;
  --primary-color: #ff7f3f;
  --secondary-color: #2f9cdb;
  --tertiary-color: #8e24aa;
  --accent-color: #2e7d32;
  --text-color: #e0e0e0;
  --window-color: #1a1a1a;
  --outline-color: #e0e0e0;

  --on-bg: #e0e0e0;
  --on-primary: #000000;
  --on-secondary: #000000;
  --on-tertiary: #000000;
  --on-accent: #ffffff;
  --on-window: #e0e0e0;

  --bg-gradient: linear-gradient(180deg, #000000 0%, #000000 100%); /* keep flat for OLED */
  --primary-gradient: linear-gradient(180deg, #ff9a6a 0%, #ff5a1a 100%);
  --secondary-gradient: linear-gradient(180deg, #6ec1f5 0%, #0469a7 100%);
  --tertiary-gradient: linear-gradient(180deg, #c06ed7 0%, #5a1671 100%);
  --accent-gradient: linear-gradient(180deg, #58b35c 0%, #145c1a 100%);
  --window-gradient: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  --outline-gradient: linear-gradient(180deg, #f5f5f5 0%, #9e9e9e 100%);
}