Darken the desktop base palette.

This commit is contained in:
2026-08-15 11:19:50 +02:00
parent ef9a55c2a2
commit 7c2a5bf8c8
19 changed files with 127 additions and 111 deletions

View File

@@ -9,6 +9,12 @@ Use the post editor as the visual reference for every screen. New UI must feel l
- Follow `crates/bds-ui/src/views/post_editor.rs` for editor hierarchy and spacing.
- Extend a shared primitive when several screens need the same treatment; do not copy color or border closures into each view.
### Base palette
- Use the named colors in `components::inputs`: `APP_BG` (`#0d1117`), `ACTIVITY_BG` (`#090c10`), `SIDEBAR_BG` (`#11161d`), `SURFACE_BG` (`#161b22`), `ELEVATED_BG` (`#1c2128`), `HOVER_BG` (`#21262d`), and `BORDER_COLOR` (`#30363d`).
- Fields use `FIELD_BG`, which deliberately matches `APP_BG`; their border supplies separation.
- Keep semantic status, selection, and accent colors separate from the base palette.
## Layout
- Use 16 px outer editor padding and 812 px spacing between groups.