:root {
    --bg-color: #f3f3f3;
    --text-color: #191C22;
    --text-color-light: #007ab8;
    --color-2: #005A9C;
    --color-2-50: #005b9c81;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #191C25;
        --text-color: #76efff;
        --text-color-50: #76efff6b;
        --text-color-light: #f7feff;
        --color-2: #FFD633;
        --color-2-50: #ffd6336b;
    }
}

body.dark-theme {
    --bg-color: #191C25;
    --text-color: #76efff;
    --text-color-50: #76efff6b;
    --text-color-light: #f7feff;
    --color-2: #FFD633;
    --color-2-50: #ffd6336b;
}

body.light-theme {
    --bg-color: #f3f3f3;
    --text-color: #191C22;
    --text-color-light: #007ab8;
    --color-2: #005A9C;
    --color-2-50: #005b9c81;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}