Remove CFB/NASCAR/PGA and streamline to 8 supported sports
- Remove College Football, NASCAR, and PGA from scraper and app - Clean all data files (stadiums, games, pipeline reports) - Update Sport.swift enum and all UI components - Add sportstime.py CLI tool for pipeline management - Add DATA_SCRAPING.md documentation - Add WNBA/MLS/NWSL implementation documentation - Scraper now supports: NBA, MLB, NHL, NFL, WNBA, MLS, NWSL, CBB Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -126,6 +126,9 @@ enum Theme {
|
||||
static let nhlBlue = Color(hex: "003087")
|
||||
static let nflBrown = Color(hex: "8B5A2B")
|
||||
static let mlsGreen = Color(hex: "00A651")
|
||||
static let wnbaPurple = Color(hex: "FF6F20") // WNBA orange
|
||||
static let nwslTeal = Color(hex: "009688") // NWSL teal
|
||||
static let cbbMint = Color(hex: "3EB489") // College Basketball mint
|
||||
|
||||
// MARK: - Dark Mode Colors
|
||||
|
||||
|
||||
@@ -215,6 +215,9 @@ extension Sport {
|
||||
case .nhl: return Theme.nhlBlue
|
||||
case .nfl: return Theme.nflBrown
|
||||
case .mls: return Theme.mlsGreen
|
||||
case .wnba: return Theme.wnbaPurple
|
||||
case .nwsl: return Theme.nwslTeal
|
||||
case .cbb: return Theme.cbbMint
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user