training-academy/balanced-red-theme.css

57 lines
1.8 KiB
CSS

/* Balanced Red/Crimson Theme - Saved Color Scheme (Cool Reds) */
:root {
/* Color system - Red accents with neutral backgrounds */
--color-primary: #dc143c;
--color-secondary: #b91c3c;
--color-accent: #e53e5a;
--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 red accents */
--border-color: rgba(255, 255, 255, 0.1);
--border-accent: rgba(220, 20, 60, 0.3);
--shadow-primary: 0 4px 12px rgba(0, 0, 0, 0.3);
--glow-primary: 0 0 20px rgba(220, 20, 60, 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 Red/Crimson Theme:
* - Backgrounds: Pure blacks and dark grays for excellent readability
* - Borders: Subtle white borders for clean separation
* - Red accents: Cool reds without orange tones - crimson, dark red, rose red
* - Hover effects: Red accent borders and subtle glows
* - Title: Cool red gradient (crimson to dark red) with animated glow
* - Progress bars: Cool red gradient fills
* - Overall feel: Bold, commanding, but balanced with neutral backgrounds
*/