:root {
    --bg-color: #121212;
    --text-color: #eeeeee;
    --accent: #00b0ff;
    --window-bg: rgba(255, 255, 255, 0.07);
    --blur-title: blur(6px);
    --blur-window: blur(15px);
}

.light-mode {
    --bg-color: #f5f5f5;
    --text-color: #1a1a1a;
    --accent: #0066cc;
    --window-bg: rgba(0, 0, 0, 0.07);
}    

body {
    background: url("/static/bg/base.gif") repeat;
    background-size: 50px 50px;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}