aboutsummaryrefslogtreecommitdiff
path: root/Map/Presentation/Theme/Color+theme.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Map/Presentation/Theme/Color+theme.swift')
-rw-r--r--Map/Presentation/Theme/Color+theme.swift45
1 files changed, 23 insertions, 22 deletions
diff --git a/Map/Presentation/Theme/Color+theme.swift b/Map/Presentation/Theme/Color+theme.swift
index ee80e82..22dc18b 100644
--- a/Map/Presentation/Theme/Color+theme.swift
+++ b/Map/Presentation/Theme/Color+theme.swift
@@ -29,31 +29,32 @@ extension Color {
static let lightNeutralGray = Color("Light Neutral Gray")
static let darkNeutralGray = Color("Dark Neutral Gray")
static let darkerNeutralGray = Color("Darker Neutral Gray")
- }
- // MARK: - General
+ // MARK: - General
- struct UI {
- static let foreground = Color("Foreground")
- static let background = Color("Background")
- }
+ struct UI {
+ static let foreground = Color("Foreground")
+ static let background = Color("Background")
+ static let accent = Color.Theme.jasperRed
+ }
- // MARK: - The Map
+ // MARK: - The Map
- struct Map {
- static let labelColor = Color.Theme.darkSlate
- static let axisColor = Color.Theme.darkSlate
- static let vertexColor = Color.Theme.darkSlate
- static let blockerColor = Color.Theme.jasperRed
- static let opportunityColor = Color.Theme.olympicBlue
- static let stageForeground = Color.Theme.lightNeutralGray
- static let stageBackground = Color.white
- static let groupColors = [
- Color.Theme.olympicBlue,
- Color.Theme.jasperRed,
- Color.Theme.lightPorcelainGreen,
- Color.Theme.naplesYellow,
- Color.Theme.hermosaPink,
- ]
+ struct Map {
+ static let labelColor = Color.Theme.darkSlate
+ static let axisColor = Color.Theme.darkSlate
+ static let vertexColor = Color.Theme.darkSlate
+ static let blockerColor = Color.Theme.jasperRed
+ static let opportunityColor = Color.Theme.olympicBlue
+ static let stageForeground = Color.Theme.lightNeutralGray
+ static let stageBackground = Color.white
+ static let groupColors = [
+ Color.Theme.olympicBlue,
+ Color.Theme.jasperRed,
+ Color.Theme.lightPorcelainGreen,
+ Color.Theme.naplesYellow,
+ Color.Theme.hermosaPink,
+ ]
+ }
}
}