2026 Deep DRFT Theme Draft 1 WIP

This commit is contained in:
daniel-c-harvey
2025-12-07 18:41:09 -05:00
parent 75456a59ce
commit a68dc37012
7 changed files with 699 additions and 186 deletions
@@ -26,11 +26,22 @@
min-width: 4px;
height: var(--bar-height, 2%);
min-height: 2px;
background: var(--deepdrft-theme-secondary, #8A2BE2);
background: var(--deepdrft-theme-secondary);
border-radius: 2px 2px 0 0;
transition: height 0.05s ease-out;
}
/* Charleston (Light Mode) - Iron to gold colored bars */
:global(.deepdrft-theme-light) .spectrum-bar {
background: linear-gradient(to top, #1C1C1C 0%, #B8848C 50%, #C9A962 100%);
}
/* Lowcountry (Dark Mode) - Coral to gold bars with warm glow */
:global(.deepdrft-theme-dark) .spectrum-bar {
background: linear-gradient(to top, #E07A5F 0%, #E9C46A 100%);
box-shadow: 0 0 4px rgba(233, 196, 106, 0.4);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.spectrum-container {