Refresh the public catalog to match the live BOS desktop

Desktop / BOS lists ISO and core apps including breadhelp; bos-settings
is Tauri 2 + Svelte, not GTK4. breadcast is a bakery-only extra in Misc.
Tokens follow the fixed #0c0c0c / #1a1a1a base instead of Catppuccin mocha.

The site is curated; bakery SoT remains bread-ecosystem/registry/bread-ecosystem.toml.
This commit is contained in:
Breadway 2026-08-15 21:33:31 +08:00
parent 6fc834a27d
commit a6f840d52f
6 changed files with 50 additions and 27 deletions

View file

@ -1,15 +1,20 @@
/* Fixed BOS dark base + curated bread-toned accent (pywal color4 default).
See bread-ecosystem/BREAD_DESIGN_SYSTEM.md not Catppuccin. */
:root {
--bg: #1e1e2e;
--bg-glow: #2a2440;
--fg: #cdd6f4;
--surface: #181825;
--surface-2: #24243a;
--surface-3: #2e2e46;
--accent: #fab387;
--accent-dim: rgba(250, 179, 135, 0.12);
--accent-line: rgba(250, 179, 135, 0.28);
--muted: #9399b2;
--border: #313147;
--bg: #0c0c0c;
--bg-glow: #1a1a1a;
--fg: #e8e8e8;
--surface: #1a1a1a;
--surface-2: #222222;
--surface-3: #2a2a2a;
--overlay: #d8d8d8;
--accent: #eab672;
--accent-dim: rgba(234, 182, 114, 0.12);
--accent-line: rgba(234, 182, 114, 0.28);
--green: #cd9450;
--yellow: #e3a85c;
--muted: #d8d8d8;
--border: #2a2a2a;
--font-sans: "Varela Round", sans-serif;
--font-mono: "JetBrains Mono", ui-monospace, monospace;
@ -26,5 +31,5 @@
--radius-pill: 999px;
--shadow-ambient: 0 1px 2px rgba(0, 0, 0, 0.24);
--shadow-hover: 0 12px 28px -10px rgba(250, 179, 135, 0.28);
--shadow-hover: 0 12px 28px -10px rgba(234, 182, 114, 0.28);
}