Complete visual overhaul: warm light theme, stadium hero, inline pill nav

Inspired by vtv/Dribbble streaming concept. Every dark surface replaced
with warm off-white (#F5F3F0) and white cards with soft shadows.

Design System: Warm off-white background, white card fills, subtle drop
shadows, dark text hierarchy, warm orange accent (#F27326) replacing
blue as primary interactive color. Added onDark color variants for hero
overlays. Shadow system with card/lifted states.

Navigation: Replaced TabView with inline CategoryPillBar — horizontal
orange pills (Today | Intel | Highlights | Multi-View | Settings).
Single scrolling view, no system chrome. Multi-View as icon button
with stream count badge. Settings as gear icon.

Stadium Hero: Full-bleed stadium photos from MLB CDN
(mlbstatic.com/v1/venue/{id}/spots/1200) as featured game background.
Left gradient overlay for text readability. Live games show score +
inning + DiamondView count/outs. Scheduled games show probable pitchers
with headshots + records. Final games show final score. Warm orange
"Watch Now" CTA pill. Added venue ID mapping for all 30 stadiums to
TeamAssets.

Game Cards: White cards with team color top bar, horizontal team rows,
dark text, soft shadows. Record + streak on every card.

Intel Tab: All dark panels replaced with white cards + shadows.
Replaced dark gradient screen background with flat warm off-white.
58 hardcoded .white.opacity() values replaced with DS.Colors tokens.

Feed Tab: Already used DS.Colors — inherits light theme automatically.

Focus: tvOS focus style uses warm orange border highlight + lifted
shadow instead of white glow on dark.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-04-12 14:56:26 -05:00
parent 69d84fd09b
commit 65ad41840f
11 changed files with 582 additions and 484 deletions

View File

@@ -86,7 +86,7 @@ struct DashboardView: View {
#if os(iOS)
horizontalSizeClass == .compact ? 340 : 480
#else
580
640
#endif
}
@@ -349,7 +349,7 @@ struct DashboardView: View {
VStack(alignment: .leading, spacing: 20) {
Label(title, systemImage: icon)
.font(.title3.weight(.bold))
.foregroundStyle(.secondary)
.foregroundStyle(DS.Colors.textSecondary)
ScrollView(.horizontal) {
LazyHStack(spacing: 30) {
@@ -376,10 +376,11 @@ struct DashboardView: View {
VStack(alignment: .leading, spacing: 6) {
Text("MLB")
.font(.headline.weight(.black))
.foregroundStyle(.secondary)
.foregroundStyle(DS.Colors.textTertiary)
.kerning(4)
Text(viewModel.displayDateString)
.font(.system(size: 40, weight: .bold))
.foregroundStyle(DS.Colors.textPrimary)
.contentTransition(.numericText())
}
@@ -438,11 +439,8 @@ struct DashboardView: View {
.padding(.horizontal, 20)
.padding(.vertical, 10)
.background(DS.Colors.panelFill)
.overlay(
RoundedRectangle(cornerRadius: DS.Radii.compact)
.strokeBorder(DS.Colors.panelStroke, lineWidth: 0.5)
)
.clipShape(RoundedRectangle(cornerRadius: DS.Radii.compact))
.shadow(color: DS.Shadows.card, radius: DS.Shadows.cardRadius, y: DS.Shadows.cardY)
}
// MARK: - Featured Channels
@@ -482,9 +480,10 @@ struct DashboardView: View {
VStack(alignment: .leading, spacing: 4) {
Text("MLB Network")
.font(.title3.weight(.bold))
.foregroundStyle(DS.Colors.textPrimary)
Text("Live coverage, analysis & highlights")
.font(.subheadline)
.foregroundStyle(.secondary)
.foregroundStyle(DS.Colors.textSecondary)
}
Spacer()
@@ -492,13 +491,14 @@ struct DashboardView: View {
if added {
Label("In Multi-View", systemImage: "checkmark.circle.fill")
.font(.subheadline.weight(.bold))
.foregroundStyle(.green)
.foregroundStyle(DS.Colors.positive)
}
}
.frame(maxWidth: .infinity, minHeight: 108, alignment: .leading)
.padding(24)
.background(.regularMaterial)
.background(DS.Colors.panelFill)
.clipShape(RoundedRectangle(cornerRadius: 20))
.shadow(color: DS.Shadows.card, radius: DS.Shadows.cardRadius, y: DS.Shadows.cardY)
}
.platformCardStyle()
}
@@ -520,9 +520,10 @@ struct DashboardView: View {
VStack(alignment: .leading, spacing: 4) {
Text(SpecialPlaybackChannelConfig.werkoutNSFWTitle)
.font(.title3.weight(.bold))
.foregroundStyle(DS.Colors.textPrimary)
Text(SpecialPlaybackChannelConfig.werkoutNSFWSubtitle)
.font(.subheadline)
.foregroundStyle(.secondary)
.foregroundStyle(DS.Colors.textSecondary)
}
Spacer()
@@ -530,7 +531,7 @@ struct DashboardView: View {
if added {
Label("In Multi-View", systemImage: "checkmark.circle.fill")
.font(.subheadline.weight(.bold))
.foregroundStyle(.green)
.foregroundStyle(DS.Colors.positive)
} else {
Label("Open", systemImage: "play.fill")
.font(.subheadline.weight(.bold))
@@ -539,8 +540,9 @@ struct DashboardView: View {
}
.frame(maxWidth: .infinity, minHeight: 108, alignment: .leading)
.padding(24)
.background(.regularMaterial)
.background(DS.Colors.panelFill)
.clipShape(RoundedRectangle(cornerRadius: 20))
.shadow(color: DS.Shadows.card, radius: DS.Shadows.cardRadius, y: DS.Shadows.cardY)
}
.platformCardStyle()
}
@@ -552,19 +554,21 @@ struct DashboardView: View {
VStack(alignment: .leading, spacing: 14) {
Label("Multi-View", systemImage: "rectangle.split.2x2")
.font(.title3.weight(.bold))
.foregroundStyle(.secondary)
.foregroundStyle(DS.Colors.textSecondary)
HStack(spacing: 12) {
ForEach(viewModel.activeStreams) { stream in
HStack(spacing: 8) {
Circle().fill(.green).frame(width: 8, height: 8)
Circle().fill(DS.Colors.positive).frame(width: 8, height: 8)
Text(stream.label)
.font(.subheadline.weight(.semibold))
.foregroundStyle(DS.Colors.textPrimary)
}
.padding(.horizontal, 14)
.padding(.vertical, 8)
.background(.regularMaterial)
.background(DS.Colors.panelFill)
.clipShape(Capsule())
.shadow(color: DS.Shadows.card, radius: 8, y: 2)
}
}
}