diff --git a/THEMES.md b/THEMES.md index 66d8a0d..3dc46b8 100644 --- a/THEMES.md +++ b/THEMES.md @@ -1,6 +1,6 @@ # Hermes Web UI — Themes -Hermes Web UI supports pluggable color themes. Six themes ship built-in, and +Hermes Web UI supports pluggable color themes. Seven themes ship built-in, and you can create your own with pure CSS — no Python changes needed. --- @@ -27,6 +27,7 @@ preview is instant — the UI updates as you click through options. | **Solarized Dark** | Ethan Schoonover's classic dark palette. Teal background, warm accents. | | **Monokai** | Warm dark theme inspired by the Monokai editor scheme. Green/pink accents. | | **Nord** | Arctic blue-gray palette from the Nord color system. Calm and minimal. | +| **OLED** | True black (#000) backgrounds for OLED displays. Minimizes glow and burn-in risk. | | **Custom themes** | Any string accepted by `settings.json`, `POST /api/settings`, and `/theme` if added to the picker/command list. Pure CSS variables only. | --- diff --git a/static/style.css b/static/style.css index 9551c35..0675e32 100644 --- a/static/style.css +++ b/static/style.css @@ -107,6 +107,7 @@ --surface:#0a0a0a;--topbar-bg:rgba(0,0,0,.98);--main-bg:rgba(0,0,0,0.5); --focus-ring:rgba(108,180,255,.3);--focus-glow:rgba(108,180,255,.06); --strong:#ffffff;--em:#c0c0d0;--code-text:#e8b86d;--code-inline-bg:rgba(255,255,255,.06);--pre-text:#d0d0d8; + --input-bg:rgba(255,255,255,.03);--hover-bg:rgba(255,255,255,.05); } body{background:var(--bg);color:var(--text);height:100vh;height:100dvh;overflow:hidden;display:flex;} .layout{display:flex;width:100%;height:100vh;height:100dvh;}