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
+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
};