/* /assets/css/dark_theme.css */
/* This file only contains the color variables for the dark theme. */

:root {
    --bg-color-darkest: #121212;
    --bg-color-dark: #1e1e1e;
    --bg-color-medium: #2a2a2a;
    --text-color-light: #e0e0e0;
    --text-color-medium: #b3b3b3;
    --accent-color-primary: #00aaff; /* A vibrant blue */
    --accent-color-hover: #0088cc;
    --accent-color-secondary: #5865f2; /* A nice purple/blue for secondary buttons */
    --border-color: #444;
    --font-family-headings: 'Roboto Mono', monospace;
    --font-family-body: 'Source Code Pro', monospace;
    --success-color: #28a745;
    --error-color: #dc3545;
}
