25 lines
732 B
Plaintext
25 lines
732 B
Plaintext
export global Palette {
|
|
|
|
// ---------- BRAND ----------
|
|
in property <color> brand: #f67a00;
|
|
|
|
// ---------- BACKGROUND ----------
|
|
in property <color> bg-main: #0f1115;
|
|
in property <color> bg-secondary: #3a3a3a;
|
|
in property <color> bg-panel: #171a1f;
|
|
in property <color> bg-hover: #1f232a;
|
|
|
|
// ---------- TEXT ----------
|
|
in property <color> text-primary: #ffffff;
|
|
in property <color> text-secondary: #a0a7b4;
|
|
in property <color> text-dim: #6b7280;
|
|
|
|
// ---------- STATES ----------
|
|
in property <color> success: #22c55e;
|
|
in property <color> warning: #f59e0b;
|
|
in property <color> error: #ef4444;
|
|
|
|
// ---------- BORDERS ----------
|
|
in property <color> border: #2a2f36;
|
|
}
|