fix dark mode docs drawer bg#1799
Conversation
Greptile SummaryThis PR fixes the dark mode background color of the docs sidebar drawer by replacing Root cause: Fix:
Confidence Score: 5/5Safe to merge — minimal, well-targeted one-line fix with no logic or API changes. Single-line CSS class swap that correctly replaces a light-only color token with a theme-aware semantic token. The token chain is confirmed in the codebase (tailwind-theme.css). No logic, state, or API changes are involved. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["bg-slate-1 (old)"] --> B["--c-slate-1 in custom-colors.css"]
B --> C["Light only: #FCFCFD"]
C --> D["❌ White background in dark mode"]
E["bg-secondary-1 (new)"] --> F["--color-secondary-1 in tailwind-theme.css"]
F --> G["--secondary-1 → --slate-1 (Radix)"]
G --> H["✅ Light: #FCFCFD | Dark: adapts via Radix"]
Reviews (1): Last reviewed commit: "fix dark mode docs drawer bg" | Re-trigger Greptile |
No description provided.