mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-06 11:09:18 +02:00
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
30 lines
661 B
CSS
30 lines
661 B
CSS
/* ============================================================
|
|
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;
|