training-academy/balanced-blue-theme.css

57 lines
1.8 KiB
CSS

/* Balanced Blue Theme - Saved Color Scheme */
:root {
/* Color system - Blue accents with neutral backgrounds */
--color-primary: #1e90ff;
--color-secondary: #0066cc;
--color-accent: #4da6ff;
--color-success: #28a745;
--color-warning: #ffc107;
--color-danger: #dc3545;
/* Text colors */
--text-primary: #ffffff;
--text-secondary: #e0e0e0;
--text-tertiary: #b0b0b0;
--text-muted: #808080;
/* Background colors - Neutrals */
--bg-primary: #0a0a0a;
--bg-secondary: #1a1a1a;
--bg-tertiary: #2a2a2a;
--bg-card: rgba(42, 42, 42, 0.8);
--bg-modal: rgba(26, 26, 26, 0.95);
/* Border and shadow - Dark grays with blue accents */
--border-color: rgba(255, 255, 255, 0.1);
--border-accent: rgba(30, 144, 255, 0.3);
--shadow-primary: 0 4px 12px rgba(0, 0, 0, 0.3);
--glow-primary: 0 0 20px rgba(30, 144, 255, 0.4);
/* Font system */
--font-xs: 0.75rem;
--font-sm: 0.875rem;
--font-base: 1rem;
--font-lg: 1.125rem;
--font-xl: 1.25rem;
--font-xxl: 1.5rem;
--font-xxxl: 2rem;
--font-xxxxl: 3rem;
/* Spacing system */
--space-xs: 0.25rem;
--space-sm: 0.5rem;
--space-base: 1rem;
--space-lg: 1.5rem;
--space-xl: 2rem;
--space-xxl: 3rem;
}
/* Key styling notes for Balanced Blue Theme:
* - Backgrounds: Pure blacks and dark grays for excellent readability
* - Borders: Subtle white borders for clean separation
* - Blue accents: Professional tech blues - dodger blue, dark blue, light blue
* - Hover effects: Blue accent borders and subtle glows
* - Title: Clean blue gradient (dodger blue to dark blue) with animated glow
* - Progress bars: Professional blue gradient fills
* - Overall feel: Tech-sophisticated, clean, trustworthy, modern
*/