Merge branch 'fix/dark-mode-lighter-theme' into 'main'

Adjust dark mode to lighter tones for better readability

See merge request esv/bsf/bsf-integration/orchard/orchard-mvp!30
This commit is contained in:
Mondo Diaz
2026-01-15 09:44:07 -06:00
3 changed files with 11 additions and 10 deletions

View File

@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added internal proxy configuration for npm, pip, helm, and apt (#51) - Added internal proxy configuration for npm, pip, helm, and apt (#51)
### Changed ### Changed
- Adjusted dark mode color palette to use lighter background tones for better readability and reduced eye strain (#52)
- Improved pod naming: Orchard pods now named `orchard-{env}-server-*` for clarity (#51) - Improved pod naming: Orchard pods now named `orchard-{env}-server-*` for clarity (#51)
### Fixed ### Fixed

View File

@@ -14,7 +14,7 @@
top: 0; top: 0;
z-index: 100; z-index: 100;
backdrop-filter: blur(12px); backdrop-filter: blur(12px);
background: rgba(17, 17, 19, 0.85); background: rgba(37, 37, 41, 0.85);
} }
.header-content { .header-content {

View File

@@ -5,12 +5,12 @@
} }
:root { :root {
/* Dark mode color palette */ /* Dark mode color palette - lighter tones for better readability */
--bg-primary: #0a0a0b; --bg-primary: #1e1e22;
--bg-secondary: #111113; --bg-secondary: #252529;
--bg-tertiary: #1a1a1d; --bg-tertiary: #2d2d32;
--bg-elevated: #222225; --bg-elevated: #35353a;
--bg-hover: #2a2a2e; --bg-hover: #3d3d42;
/* Accent colors - Green/Emerald theme */ /* Accent colors - Green/Emerald theme */
--accent-primary: #10b981; --accent-primary: #10b981;
@@ -24,9 +24,9 @@
--text-tertiary: #9ca3af; --text-tertiary: #9ca3af;
--text-muted: #6b7280; --text-muted: #6b7280;
/* Border colors */ /* Border colors - slightly more visible */
--border-primary: #27272a; --border-primary: #37373d;
--border-secondary: #3f3f46; --border-secondary: #48484e;
--border-accent: #10b981; --border-accent: #10b981;
/* Status colors */ /* Status colors */