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.
35 lines
912 B
CSS
35 lines
912 B
CSS
/* Fixed BOS dark base + curated bread-toned accent (pywal color4 default).
|
|
See bread-ecosystem/BREAD_DESIGN_SYSTEM.md — not Catppuccin. */
|
|
:root {
|
|
--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;
|
|
|
|
--space-xs: 4px;
|
|
--space-sm: 8px;
|
|
--space-md: 12px;
|
|
--space-lg: 16px;
|
|
--space-xl: 20px;
|
|
|
|
--radius-primary: 8px;
|
|
--radius-secondary: 6px;
|
|
--radius-tertiary: 4px;
|
|
--radius-pill: 999px;
|
|
|
|
--shadow-ambient: 0 1px 2px rgba(0, 0, 0, 0.24);
|
|
--shadow-hover: 0 12px 28px -10px rgba(234, 182, 114, 0.28);
|
|
}
|