fix serve recipe: filter output to Development Server start + [200] requests only

refactor: unify CSS color variables across public and admin

- Replace old variable structure with new standardized naming:
  - Background: --bg-primary, --bg-secondary, --bg-tertiary, --bg-active
  - Text: --text-primary, --text-secondary, --text-tertiary
  - Border: --border-primary, --border-secondary
  - Status: --success, --error, --warning
  - Accent: --accent-primary, --accent-secondary, --accent-foreground, --accent-muted
- Remove admin-specific color variables (--admin-*)
- Update all CSS files to use shared variables:
  - variables.css, common.css, main.css, admin.css
  - tfe.css, search.css, apropos.css, system.css, colors.css
This commit is contained in:
Pontoporeia
2026-04-02 14:11:11 +02:00
parent ba7814c6dc
commit bf2594112b
15 changed files with 536 additions and 1656 deletions

View File

@@ -0,0 +1,29 @@
/* ============================================================
COLOR VALUES REFERENCE
============================================================ */
/* Background colors */
--bg-primary: #000000;
--bg-secondary: #000000;
--bg-tertiary: #0d0d0d;
--bg-active: #1a1a1a;
/* Text colors */
--text-primary: #ffffff;
--text-secondary: #a6a6a6;
--text-tertiary: #666666;
/* Border colors */
--border-primary: #737373;
--border-secondary: #404040;
/* Status colors */
--success: #5cd69d;
--error: #f25a5a;
--warning: #fbca51;
/* Accent colors */
--accent-primary: #9557b5;
--accent-secondary: #683d7f;
--accent-foreground: #000000;
--accent-muted: #25162d;