:root {
    --accent-color: #ff6f00;

    /* Accent icon filter approximation (orange) */
    --accent-icon: sepia(1) saturate(5000%) hue-rotate(10deg) brightness(1.1);

    /* Backgrounds */
    --bg-base: rgb(255 246 236);
    --bg-surface: rgb(255, 255, 255);
    --bg-deep: rgb(255 226 195);
    --bg-elevated: rgb(255 194 114);
    --bg-hover: rgb(255 194 114);

    /* Sidebar / Menus */
    --bg-sidebar: rgb(255, 255, 255);
    --bg-btn-menu: rgb(255 246 236);
    --sidebar-icon-color: brightness(0) invert(0.4);
    --sidebar-icon-hover: brightness(0) invert(0.2);

    /* Text colors */
    --text-base: #000000;
    --text-surface: #000000;
    --text-elevated: #000000;
    --text-deep: #000000;
    --text-btn-menu: #000000;

    /* Secondary / muted text */
    --text-color-secondary: #666666;
    --subtext-color: #666666;

    /* Icon color (general icons) */
    --icon-color: brightness(0) invert(0.2);

    /* Font sizes */
    --fs-xxs: 8px;
    --fs-xs: 10px;
    --fs-sm: 12px;
    --fs-md: 14px;
    --fs-lg: 16px;
    --fs-xl: 18px;

    /* Button Accent Colors */
    --btn-accent-background: var(--accent-color);
    --btn-accent-color: #ffffff;
    --btn-accent-icon: brightness(0) invert(1);

    /* Scroll Bar */
    --scrollbar-track-color: var(--bg-surface);
    --scrollbar-thumb-color: var(--bg-deep);
    --scrollbar-thumb-hover-color: var(--bg-hover);

    /* Image Color */
    --image-color: brightness(.25);
}