/* Catppuccin CSS File */
/* https://github.com/catppuccin/catppuccin */
/* Restart, 2024 */

:root {
    --text: #4c4f69;
    --a: #1e66f5;
    --a-hover: #7287fd;
    --h1: #7287fd;
    --header: rgba(239, 241, 245, 0.7);
    --header-hover: #dce0e8;
    --bg: #dce0e8;
    --button: #ccd0da;
    --button-border: #9e9e9e;
    --button-hover: #aeb2bb;
    --error: #ffa3a3;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #cdd6f4;
        --a: #89b4fa;
        --a-hover: #b4befe;
        --h1: #b4befe;
        --header: rgba(30, 30, 46, 0.7);
        --header-hover: #11111b;
        --bg: #11111b;
        --button: #313244;
        --button-border: #555555;
        --button-hover: #515264;
        --error: #740000;
    }
}