/*
        Copyright (C) 2026 - Kiwi Docs by Veer Bajaj <https://github.com/kiwidocs>

        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU General Public License as published by
        the Free Software Foundation, either version 3 of the License, or
        (at your option) any later version.

        This program is distributed in the hope that it will be useful,
        but WITHOUT ANY WARRANTY; without even the implied warranty of
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        GNU General Public License for more details.

        You should have received a copy of the GNU General Public License
        along with this program.  If not, see <https://www.gnu.org/licenses/>.
*/

:root {
    /* Colors */
    --bg-dark: #090b0f;
    --glass-bg: rgba(22, 27, 34, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Accents */
    --accent-primary: #58a6ff;
    --accent-secondary: #bc8cff;

    /* Text */
    --text-main: #e6edf3;
    --text-dim: #8b949e;

    /* Dimensions */
    --sidebar-width: 280px;
    --aside-width: 320px;
    --nav-height: 60px;

    /* Effects */
    --glow: 0 0 20px rgba(88, 166, 255, 0.15);

    /* Gradients */
    --gradient-bg-1: radial-gradient(circle at 0% 0%, rgba(88, 166, 255, 0.1) 0%, transparent 40%);
    --gradient-bg-2: radial-gradient(circle at 100% 100%, rgba(188, 140, 255, 0.1) 0%, transparent 40%);
}

:root.light-mode {
    /* Colors */
    --bg-dark: #f6f8fa;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.1);

    /* Accents */
    --accent-primary: #0969da;
    --accent-secondary: #8250df;

    /* Text */
    --text-main: #24292f;
    --text-dim: #57606a;

    /* Effects */
    --glow: 0 0 20px rgba(9, 105, 218, 0.15);

    /* Gradients */
    --gradient-bg-1: radial-gradient(circle at 0% 0%, rgba(9, 105, 218, 0.1) 0%, transparent 40%);
    --gradient-bg-2: radial-gradient(circle at 100% 100%, rgba(130, 80, 223, 0.1) 0%, transparent 40%);
}