57 lines
1.8 KiB
CSS
57 lines
1.8 KiB
CSS
/* Balanced Purple Theme - Saved Color Scheme */
|
|
:root {
|
|
/* Color system - Purple accents with neutral backgrounds */
|
|
--color-primary: #8a2be2;
|
|
--color-secondary: #da70d6;
|
|
--color-accent: #ba55d3;
|
|
--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 with subtle purple hints */
|
|
--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 purple accents */
|
|
--border-color: rgba(255, 255, 255, 0.1);
|
|
--border-accent: rgba(138, 43, 226, 0.3);
|
|
--shadow-primary: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
--glow-primary: 0 0 20px rgba(138, 43, 226, 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 Purple Theme:
|
|
* - Backgrounds: Pure blacks and dark grays for excellent readability
|
|
* - Borders: Subtle white borders for clean separation
|
|
* - Purple accents: Used strategically for buttons, highlights, and interactive elements
|
|
* - Hover effects: Purple accent borders and subtle glows
|
|
* - Title: Purple gradient with animated glow
|
|
* - Progress bars: Purple gradient fills
|
|
* - Overall feel: Sophisticated, readable, with strategic purple branding
|
|
*/ |