// Copyright (C) 2026 Hector van der Aa // Copyright (C) 2026 Association Exergie // SPDX-License-Identifier: GPL-3.0-or-later export global Palette { // ---------- BRAND ---------- in property brand: #f67a00; in property brand-soft: #ff9a33; in property brand-dim: #c85f00; // ---------- BACKGROUND LAYERS ---------- // application root in property bg-main: #0f1115; // window surfaces in property bg-secondary: #1a1d23; // panels / cards in property bg-panel: #20242b; // hover states in property bg-hover: #2a2f36; // pressed states in property bg-active: #313742; // ---------- TEXT ---------- in property text-primary: #ffffff; in property text-secondary: #a0a7b4; in property text-dim: #6b7280; in property text-muted: #4b5563; // ---------- STATES ---------- in property success: #22c55e; in property warning: #f59e0b; in property error: #ef4444; in property info: #38bdf8; // ---------- BORDERS ---------- // subtle separators in property border-subtle: #22262d; // default component border in property border: #2f3540; // strong window border in property border-strong: #404754; // focus ring in property border-focus: #f67a00; // divider lines in property border-divider: #3a404c; }