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
@@ -1,4 +1,4 @@
/* Navigation menu item styling */
/* Navigation menu item styling */
.nav-menu-item {
display: block;
padding: 8px 16px;
@@ -29,26 +29,42 @@
transition: all 0.3s ease;
}
/* Hover state */
.nav-menu-item:hover {
background-color: rgba(138, 43, 226, 0.08);
color: #8A2BE2;
text-decoration: none;
}
/* === HOVER STATES === */
.nav-menu-item:hover .nav-item-content {
color: var(--mud-palette-tertiary);
/* Base hover */
.nav-menu-item:hover {
text-decoration: none;
}
.nav-menu-item:hover .nav-item-text {
font-weight: 600;
}
/* Active state */
/* Charleston (Light Mode) - Gold hover tint */
:global(.deepdrft-theme-light) .nav-menu-item:hover {
background-color: rgba(201, 169, 98, 0.1);
color: #1C1C1C;
}
:global(.deepdrft-theme-light) .nav-menu-item:hover .nav-item-content {
color: #B8848C;
}
/* Lowcountry (Dark Mode) - Coral glow hover */
:global(.deepdrft-theme-dark) .nav-menu-item:hover {
background-color: rgba(224, 122, 95, 0.12);
color: #E07A5F;
box-shadow: 0 0 10px rgba(224, 122, 95, 0.15);
}
:global(.deepdrft-theme-dark) .nav-menu-item:hover .nav-item-content {
color: #E07A5F;
}
/* === ACTIVE STATES === */
/* Base active */
.nav-menu-item.active {
background-color: rgba(138, 43, 226, 0.12);
color: var(--mud-palette-primary);
border-left: 4px solid #8A2BE2;
padding-left: 12px;
}
@@ -64,8 +80,39 @@
font-weight: 600;
}
/* Focus state */
.nav-menu-item:focus {
outline: 2px solid #8A2BE2;
/* Charleston (Light Mode) - Iron left border */
:global(.deepdrft-theme-light) .nav-menu-item.active {
background-color: rgba(28, 28, 28, 0.08);
color: #1C1C1C;
border-left: 4px solid #1C1C1C;
}
:global(.deepdrft-theme-light) .nav-menu-item.active .nav-item-content {
color: #1C1C1C;
}
/* Lowcountry (Dark Mode) - Gold active indicator */
:global(.deepdrft-theme-dark) .nav-menu-item.active {
background-color: rgba(233, 196, 106, 0.12);
color: #E9C46A;
border-left: 4px solid #E9C46A;
box-shadow: 0 0 12px rgba(233, 196, 106, 0.2);
}
:global(.deepdrft-theme-dark) .nav-menu-item.active .nav-item-content {
color: #E9C46A;
}
/* === FOCUS STATES === */
/* Charleston (Light Mode) - Iron focus outline */
:global(.deepdrft-theme-light) .nav-menu-item:focus {
outline: 2px solid #1C1C1C;
outline-offset: 2px;
}
/* Lowcountry (Dark Mode) - Coral focus outline */
:global(.deepdrft-theme-dark) .nav-menu-item:focus {
outline: 2px solid #E07A5F;
outline-offset: 2px;
}