Theming Draft 2

This commit is contained in:
daniel-c-harvey
2025-12-08 20:30:41 -05:00
parent a68dc37012
commit bb3551a248
7 changed files with 288 additions and 176 deletions
@@ -42,23 +42,23 @@
/* Charleston (Light Mode) - Gold hover tint */
:global(.deepdrft-theme-light) .nav-menu-item:hover {
background-color: rgba(201, 169, 98, 0.1);
color: #1C1C1C;
background-color: color-mix(in srgb, var(--charleston-gold) 10%, transparent);
color: var(--charleston-iron);
}
:global(.deepdrft-theme-light) .nav-menu-item:hover .nav-item-content {
color: #B8848C;
color: var(--charleston-rose);
}
/* 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);
background-color: color-mix(in srgb, var(--lowcountry-coral) 12%, transparent);
color: var(--lowcountry-coral);
box-shadow: 0 0 10px color-mix(in srgb, var(--lowcountry-coral) 15%, transparent);
}
:global(.deepdrft-theme-dark) .nav-menu-item:hover .nav-item-content {
color: #E07A5F;
color: var(--lowcountry-coral);
}
/* === ACTIVE STATES === */
@@ -82,37 +82,37 @@
/* 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;
background-color: color-mix(in srgb, var(--charleston-iron) 8%, transparent);
color: var(--charleston-iron);
border-left: 4px solid var(--charleston-iron);
}
:global(.deepdrft-theme-light) .nav-menu-item.active .nav-item-content {
color: #1C1C1C;
color: var(--charleston-iron);
}
/* 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);
background-color: color-mix(in srgb, var(--lowcountry-gold) 12%, transparent);
color: var(--lowcountry-gold);
border-left: 4px solid var(--lowcountry-gold);
box-shadow: 0 0 12px color-mix(in srgb, var(--lowcountry-gold) 20%, transparent);
}
:global(.deepdrft-theme-dark) .nav-menu-item.active .nav-item-content {
color: #E9C46A;
color: var(--lowcountry-gold);
}
/* === FOCUS STATES === */
/* Charleston (Light Mode) - Iron focus outline */
:global(.deepdrft-theme-light) .nav-menu-item:focus {
outline: 2px solid #1C1C1C;
outline: 2px solid var(--charleston-iron);
outline-offset: 2px;
}
/* Lowcountry (Dark Mode) - Coral focus outline */
:global(.deepdrft-theme-dark) .nav-menu-item:focus {
outline: 2px solid #E07A5F;
outline: 2px solid var(--lowcountry-coral);
outline-offset: 2px;
}
@@ -26,7 +26,7 @@
border-radius: 1rem;
border: 2px solid var(--deepdrft-theme-primary);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
color: #ffffff;
color: inherit;
transition: all 0.3s ease;
overflow: hidden;
margin-bottom: 1rem;
@@ -34,21 +34,21 @@
/* Charleston (Light Mode) - Iron frame effect */
:global(.deepdrft-theme-light) .player-backdrop {
background: rgba(253, 251, 247, 0.92);
border: 2px solid #1C1C1C;
box-shadow: 0 4px 20px rgba(28, 28, 28, 0.2),
inset 0 0 0 1px rgba(28, 28, 28, 0.05);
color: #1C1C1C;
background: color-mix(in srgb, var(--charleston-cream) 92%, transparent);
border: 2px solid var(--charleston-iron);
box-shadow: 0 4px 20px color-mix(in srgb, var(--charleston-iron) 20%, transparent),
inset 0 0 0 1px color-mix(in srgb, var(--charleston-iron) 5%, transparent);
color: var(--charleston-iron);
}
/* Lowcountry (Dark Mode) - Warm sunset glow effect */
:global(.deepdrft-theme-dark) .player-backdrop {
background: rgba(20, 20, 32, 0.88);
border: 1px solid rgba(224, 122, 95, 0.5);
box-shadow: 0 0 20px rgba(224, 122, 95, 0.25),
0 0 40px rgba(123, 109, 141, 0.15),
background: color-mix(in srgb, var(--lowcountry-night) 88%, transparent);
border: 1px solid color-mix(in srgb, var(--lowcountry-coral) 50%, transparent);
box-shadow: 0 0 20px color-mix(in srgb, var(--lowcountry-coral) 25%, transparent),
0 0 40px color-mix(in srgb, var(--lowcountry-twilight) 15%, transparent),
0 4px 20px rgba(0, 0, 0, 0.4);
color: #F5F0E6;
color: var(--lowcountry-moonlight);
}
/* Control buttons positioning */
@@ -82,17 +82,17 @@
/* Charleston (Light Mode) - Iron dock */
:global(.deepdrft-theme-light) .minimized-dock {
background: linear-gradient(135deg, #1C1C1C 0%, #B8848C 50%, #C9A962 100%);
border: 2px solid #1C1C1C;
box-shadow: 0 4px 15px rgba(28, 28, 28, 0.4);
background: linear-gradient(135deg, var(--charleston-iron) 0%, var(--charleston-rose) 50%, var(--charleston-gold) 100%);
border: 2px solid var(--charleston-iron);
box-shadow: 0 4px 15px color-mix(in srgb, var(--charleston-iron) 40%, transparent);
}
/* Lowcountry (Dark Mode) - Warm sunset dock */
:global(.deepdrft-theme-dark) .minimized-dock {
background: linear-gradient(135deg, #E07A5F 0%, #7B6D8D 50%, #E9C46A 100%);
border: 2px solid rgba(224, 122, 95, 0.6);
box-shadow: 0 0 20px rgba(224, 122, 95, 0.4),
0 0 40px rgba(123, 109, 141, 0.2);
background: linear-gradient(135deg, var(--lowcountry-coral) 0%, var(--lowcountry-twilight) 50%, var(--lowcountry-gold) 100%);
border: 2px solid color-mix(in srgb, var(--lowcountry-coral) 60%, transparent);
box-shadow: 0 0 20px color-mix(in srgb, var(--lowcountry-coral) 40%, transparent),
0 0 40px color-mix(in srgb, var(--lowcountry-twilight) 20%, transparent);
}
.minimized-dock:hover {
@@ -100,12 +100,12 @@
}
:global(.deepdrft-theme-light) .minimized-dock:hover {
box-shadow: 0 6px 20px rgba(28, 28, 28, 0.5);
box-shadow: 0 6px 20px color-mix(in srgb, var(--charleston-iron) 50%, transparent);
}
:global(.deepdrft-theme-dark) .minimized-dock:hover {
box-shadow: 0 0 30px rgba(224, 122, 95, 0.5),
0 0 50px rgba(123, 109, 141, 0.3);
box-shadow: 0 0 30px color-mix(in srgb, var(--lowcountry-coral) 50%, transparent),
0 0 50px color-mix(in srgb, var(--lowcountry-twilight) 30%, transparent);
}
/* Minimized button styles */
@@ -33,13 +33,13 @@
/* 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%);
background: linear-gradient(to top, var(--charleston-iron) 0%, var(--charleston-rose) 50%, var(--charleston-gold) 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);
background: linear-gradient(to top, var(--lowcountry-coral) 0%, var(--lowcountry-gold) 100%);
box-shadow: 0 0 4px color-mix(in srgb, var(--lowcountry-gold) 40%, transparent);
}
/* Responsive adjustments */
+16 -16
View File
@@ -51,35 +51,35 @@
{
Default = new DefaultTypography()
{
FontFamily = new[] {"Source Serif 4", "serif"}
FontFamily = new[] {"DM Sans", "sans-serif"}
},
H1 = new H1Typography()
{
FontFamily = new[] {"Playfair Display", "serif"}
FontFamily = new[] {"Bodoni Moda", "serif"}
},
H2 = new H2Typography()
{
FontFamily = new[] {"Cormorant Garamond", "serif"}
FontFamily = new[] {"EB Garamond", "serif"}
},
H3 = new H3Typography()
{
FontFamily = new[] {"Cormorant Garamond", "serif"}
FontFamily = new[] {"EB Garamond", "serif"}
},
H4 = new H4Typography()
{
FontFamily = new[] {"Cormorant Garamond", "serif"}
FontFamily = new[] {"EB Garamond", "serif"}
},
H5 = new H5Typography()
{
FontFamily = new[] {"Cormorant Garamond", "serif"}
FontFamily = new[] {"EB Garamond", "serif"}
},
H6 = new H6Typography()
{
FontFamily = new[] {"Cormorant Garamond", "serif"}
FontFamily = new[] {"EB Garamond", "serif"}
},
Button = new ButtonTypography()
{
FontFamily = new[] {"Cormorant Garamond", "serif"}
FontFamily = new[] {"DM Sans", "sans-serif"}
}
}
}
@@ -144,7 +144,7 @@
// Inspired by warm sunsets over marshes, fireflies, Spanish moss, lamplight
private readonly PaletteDark _darkPalette = new()
{
Primary = "#E07A5F", // Sunset coral - warm, not neon
Primary = "#D4654A", // Deep sunset coral - richer, distinct
Secondary = "#7B6D8D", // Twilight purple - muted
Tertiary = "#E9C46A", // Firefly gold - lamplight
Info = "#2196F3", // MudBlazor default blue (semantic)
@@ -167,13 +167,13 @@
TextPrimary = "#F5F0E6", // Warm white primary text
TextSecondary = "#B8B0C4", // Lavender gray secondary text
TextDisabled = "#757575", // Disabled text
GrayLight = "rgba(224,122,95,0.15)", // Coral tint light
GrayLighter = "rgba(224,122,95,0.08)", // Coral tint lighter
GrayDefault = "rgba(224,122,95,0.22)", // Coral tint default
GrayDark = "rgba(224,122,95,0.35)", // Coral tint dark
Divider = "rgba(224,122,95,0.18)", // Coral divider
LinesDefault = "rgba(224,122,95,0.18)", // Coral lines
TableLines = "rgba(224,122,95,0.18)", // Coral table lines
GrayLight = "rgba(212,101,74,0.15)", // Coral tint light
GrayLighter = "rgba(212,101,74,0.08)", // Coral tint lighter
GrayDefault = "rgba(212,101,74,0.22)", // Coral tint default
GrayDark = "rgba(212,101,74,0.35)", // Coral tint dark
Divider = "rgba(212,101,74,0.18)", // Coral divider
LinesDefault = "rgba(212,101,74,0.18)", // Coral lines
TableLines = "rgba(212,101,74,0.18)", // Coral table lines
OverlayLight = "rgba(0,0,0,0.7)", // Dark overlay
OverlayDark = "rgba(255,255,255,0.08)", // Light overlay
};
+7 -8
View File
@@ -74,9 +74,9 @@
<MudChip Color="Color.Primary" Class="deepdrft-chip-spacing">House</MudChip>
<MudChip Color="Color.Secondary" Class="deepdrft-chip-spacing">Techno</MudChip>
<MudChip Color="Color.Tertiary" Class="deepdrft-chip-spacing">Trance</MudChip>
<MudChip Color="Color.Info" Class="deepdrft-chip-spacing">IDM</MudChip>
<MudChip Color="Color.Warning" Class="deepdrft-chip-spacing">Progressive</MudChip>
<MudChip Color="Color.Success" Class="deepdrft-chip-spacing">Ambient</MudChip>
<MudChip Class="deepdrft-chip-spacing deepdrft-chip-quaternary">IDM</MudChip>
<MudChip Class="deepdrft-chip-spacing deepdrft-chip-senary">Progressive</MudChip>
<MudChip Class="deepdrft-chip-spacing deepdrft-chip-quinary">Ambient</MudChip>
</MudChipSet>
<MudText Typo="Typo.body1" Class="deepdrft-text-readable">
From deep, driving basslines to ethereal atmospheric textures, our music explores the
@@ -141,11 +141,10 @@
<MudItem xs="12" sm="6" md="3">
<MudCard Elevation="8" Class="pa-4 deepdrft-feature-card deepdrft-feature-icon-container deepdrft-card-lavender-tint">
<MudIcon Icon="@Icons.Material.Filled.Archive"
Size="Size.Large"
Color="Color.Info"
Class="mb-3 deepdrft-icon-large" />
<MudText Typo="Typo.h6" Color="Color.Info" Class="mb-2 deepdrft-text-bold">
<MudIcon Icon="@Icons.Material.Filled.Archive"
Size="Size.Large"
Class="mb-3 deepdrft-icon-large deepdrft-text-quaternary" />
<MudText Typo="Typo.h6" Class="mb-2 deepdrft-text-bold deepdrft-text-quaternary">
Growing Archive
</MudText>
<MudText Typo="Typo.body2">