test: Add new background patterns for light and dark themes
**TESTING** - These patterns can be easily reverted or modified Light Theme (Woven Fabric Pattern): - Subtle gray crosshatch pattern - Multiple gradients creating woven texture - Professional and clean appearance Dark Theme (Diagonal Grid with Green Glow): - 45° and -45° diagonal lines - Green glow (rgba(0, 255, 128, 0.1)) - Cyberpunk/tech aesthetic - 40px grid spacing Implementation: - Added --page-bg-pattern CSS variables to color-theme.css - Applied patterns via body background-image in _reset.css - OLD pattern commented out and preserved for easy restoration - Patterns work with light, dark, and auto themes Files changed: - static/css/color-theme.css: Added pattern variables - static/css/01-foundation/_reset.css: Applied patterns to body To revert: Uncomment old pattern and remove --page-bg-pattern usage
This commit is contained in:
@@ -18,6 +18,12 @@
|
||||
/* Page Background - Softer version of dark theme */
|
||||
--page-bg: #b8bbbe;
|
||||
|
||||
/* TEST: Woven Fabric Pattern - Light (TESTING - can be removed later) */
|
||||
--page-bg-pattern: repeating-linear-gradient(0deg, rgba(75, 85, 99, 0.08), rgba(75, 85, 99, 0.08) 2px, transparent 2px, transparent 6px),
|
||||
repeating-linear-gradient(90deg, rgba(107, 114, 128, 0.06), rgba(107, 114, 128, 0.06) 2px, transparent 2px, transparent 6px),
|
||||
repeating-linear-gradient(0deg, rgba(55, 65, 81, 0.04), rgba(55, 65, 81, 0.04) 1px, transparent 1px, transparent 12px),
|
||||
repeating-linear-gradient(90deg, rgba(55, 65, 81, 0.04), rgba(55, 65, 81, 0.04) 1px, transparent 1px, transparent 12px);
|
||||
|
||||
/* Paper/Card Backgrounds */
|
||||
--paper-bg: #ffffff;
|
||||
--paper-secondary-bg: #f5f5f5;
|
||||
@@ -66,6 +72,10 @@
|
||||
/* Page Background - Original background */
|
||||
--page-bg: rgb(82, 86, 89);
|
||||
|
||||
/* TEST: Diagonal Grid with Green Glow (TESTING - can be removed later) */
|
||||
--page-bg-pattern: repeating-linear-gradient(45deg, rgba(0, 255, 128, 0.1) 0, rgba(0, 255, 128, 0.1) 1px, transparent 1px, transparent 20px),
|
||||
repeating-linear-gradient(-45deg, rgba(0, 255, 128, 0.1) 0, rgba(0, 255, 128, 0.1) 1px, transparent 1px, transparent 20px);
|
||||
|
||||
/* Paper/Card Backgrounds */
|
||||
--paper-bg: #1a1a1a;
|
||||
--paper-secondary-bg: #2a2a2a;
|
||||
@@ -115,6 +125,10 @@
|
||||
/* Page Background - Original background */
|
||||
--page-bg: rgb(82, 86, 89);
|
||||
|
||||
/* TEST: Diagonal Grid with Green Glow (TESTING - can be removed later) */
|
||||
--page-bg-pattern: repeating-linear-gradient(45deg, rgba(0, 255, 128, 0.1) 0, rgba(0, 255, 128, 0.1) 1px, transparent 1px, transparent 20px),
|
||||
repeating-linear-gradient(-45deg, rgba(0, 255, 128, 0.1) 0, rgba(0, 255, 128, 0.1) 1px, transparent 1px, transparent 20px);
|
||||
|
||||
/* Paper/Card Backgrounds */
|
||||
--paper-bg: #1a1a1a;
|
||||
--paper-secondary-bg: #2a2a2a;
|
||||
|
||||
Reference in New Issue
Block a user