/* Mentor Theme Color Palette */

:root {
    /* Brand Colors */
    --mentor-primary: #0073e6;
    --mentor-primary-dark: #005bb5;
    --mentor-primary-light: #e6f3ff;

    /* Neutral Colors */
    --mentor-black: #222;
    --mentor-dark: #444;
    --mentor-gray: #777;
    --mentor-light: #f8f8f8;
    --mentor-white: #fff;

    /* Accent Colors */
    --mentor-success: #28a745;
    --mentor-warning: #ffc107;
    --mentor-danger: #dc3545;
}

/* Utility classes for colors */

.text-primary {
    color: var(--mentor-primary);
}

.text-dark {
    color: var(--mentor-dark);
}

.text-light {
    color: var(--mentor-light);
}

.bg-primary {
    background: var(--mentor-primary);
    color: var(--mentor-white);
}

.bg-light {
    background: var(--mentor-light);
}

.bg-dark {
    background: var(--mentor-dark);
    color: var(--mentor-white);
}
