/* theme-forgejo-amoled.css AMOLED dark theme for Forgejo v15.x Strategy: 
   redefine the steel-* palette to pure black-based grays, then all downstream 
   --color-* variables inherit correctly. Place in: 
   <custom>/public/assets/css/theme-forgejo-amoled.css
*/ @import "./theme-forgejo-dark.css";
:root {
  /* ── Remap steel palette to pure-black grays ────────────────────── Original 
     steel-900 was #10161d (near-black blue-tinted). We collapse the bottom of 
     the scale to true black and spread the mid-tones across 111–333 so UI 
     layers stay distinct.
  */ --steel-900: #000000; /* was #10161d — nav bg, footer */ --steel-850: 
  #0a0a0a; /* was #131a21 — header wrapper */
  --steel-800: #111111; /* was #171e26 — page body bg */ --steel-750: #161616; 
  /* was #1d262f — box body */ --steel-700: #1c1c1c; /* was #242d38 — cards, 
  menus */ --steel-650: #222222; /* was #2b3642 — box highlights, inputs */ 
  --steel-600: #2a2a2a; /* was #374351 — buttons, hover */ --steel-550: 
  #333333; /* was #445161 — borders */
  --steel-500: #3d3d3d; /* was #515f70 — subtle borders */ --steel-450: 
  #4a4a4a; /* was #5f6e80 — input border hover */
  /* These upper steps are text/icon colors — keep them unchanged so 
     readability is not affected. Only redefine if you want slightly cooler or 
     warmer text. */
  /* --steel-400 through --steel-100 left as-is (they are text colors) */ /* ── 
  Explicit overrides for things that don't use steel vars ─────── */ /* 
  Console/terminal pane — currently has its own bg, not steel-based */ 
  --color-console-bg: #0d0d0d; --color-console-border: #1e1e1e; 
  --color-console-menu-bg: #161616; --color-console-menu-border: #2a2a2a; 
  --color-console-hover-bg: #ffffff10; --color-console-active-bg: #2a2a2a; /* 
  Expand button (inline diff expander) */ --color-expand-button: #1a1a1a; /* 
  Editor line highlight */ --color-editor-line-highlight: #1c1c1c; /* Code 
  block backgrounds (use markup-code vars, not steel) */ 
  --color-markup-code-block: #0d0d0d; --color-markup-code-inline: #111111; /* 
  Checkerboard (transparency indicator for images) */ --checkerboard-color-1: 
  #1a1a1a;
  --checkerboard-color-2: #111111; /* Overlay backdrop — keep dark, just strip 
  the blue tint */ --color-overlay-backdrop: #000000c0; /* Shadow — pure black, 
  no blue */ --color-shadow: #00000080; /* Project board background */ 
  --color-project-board-bg: #161616;
}
