diff --git a/iphone/Chart/Chart/Views/ChartInfo/ChartPointIntersectionView.swift b/iphone/Chart/Chart/Views/ChartInfo/ChartPointIntersectionView.swift index 7aabaea11f..5464d86821 100644 --- a/iphone/Chart/Chart/Views/ChartInfo/ChartPointIntersectionView.swift +++ b/iphone/Chart/Chart/Views/ChartInfo/ChartPointIntersectionView.swift @@ -73,6 +73,6 @@ class ChartPointIntersectionView: UIView { func updatePoint(_ point: ChartLineInfo) { intersectionView.center = CGPoint(x: bounds.midX, y: point.point.y) + color = point.color } } - diff --git a/iphone/Maps/Core/Theme/Colors.swift b/iphone/Maps/Core/Theme/Colors.swift index 15c42cb560..552e2b2444 100644 --- a/iphone/Maps/Core/Theme/Colors.swift +++ b/iphone/Maps/Core/Theme/Colors.swift @@ -67,6 +67,8 @@ class DayColors: IColors { var elevationPreviewTint = UIColor(193, 209, 224, alpha30) var elevationPreviewSelector = UIColor(red: 0.757, green: 0.82, blue: 0.878, alpha: 1) var shadow = UIColor(0, 0, 0, alpha100) + var chartLine = UIColor(red: 0.118, green: 0.588, blue: 0.941, alpha: 1) + var chartShadow = UIColor(red: 0.118, green: 0.588, blue: 0.941, alpha: 0.12) } class NightColors: IColors { @@ -138,4 +140,6 @@ class NightColors: IColors { var elevationPreviewTint = UIColor(0, 0, 0, alpha54) var elevationPreviewSelector = UIColor(red: 0.404, green: 0.439, blue: 0.475, alpha: 1) var shadow = UIColor.clear + var chartLine = UIColor(red: 0.294, green: 0.725, blue: 0.902, alpha: 1) + var chartShadow = UIColor(red: 0.294, green: 0.725, blue: 0.902, alpha: 0.12) } diff --git a/iphone/Maps/Core/Theme/Components/IColors.swift b/iphone/Maps/Core/Theme/Components/IColors.swift index 3d5b5c8c78..80c6109e09 100644 --- a/iphone/Maps/Core/Theme/Components/IColors.swift +++ b/iphone/Maps/Core/Theme/Components/IColors.swift @@ -77,4 +77,6 @@ let alpha100: CGFloat = 1.0 var elevationPreviewSelector: UIColor { get } var elevationPreviewTint: UIColor { get } var shadow: UIColor { get } + var chartLine: UIColor { get } + var chartShadow: UIColor { get } } diff --git a/iphone/Maps/UI/PlacePage/Components/ElevationProfile/ElevationProfilePresenter.swift b/iphone/Maps/UI/PlacePage/Components/ElevationProfile/ElevationProfilePresenter.swift index 478d1df86d..0226457a2e 100644 --- a/iphone/Maps/UI/PlacePage/Components/ElevationProfile/ElevationProfilePresenter.swift +++ b/iphone/Maps/UI/PlacePage/Components/ElevationProfile/ElevationProfilePresenter.swift @@ -160,8 +160,10 @@ fileprivate struct ElevationProfileChartData { let values = points.map { Int($0.altitude) } distances = points.map { $0.distance } let color = UIColor(red: 0.12, green: 0.59, blue: 0.94, alpha: 1) - let l1 = Line(values: values, name: "Altitude", color: color, type: .line) - let l2 = Line(values: values, name: "Altitude", color: color.withAlphaComponent(0.12), type: .lineArea) + let lineColor = StyleManager.shared.theme?.colors.chartLine ?? color + let lineShadowColor = StyleManager.shared.theme?.colors.chartShadow ?? color.withAlphaComponent(0.12) + let l1 = Line(values: values, name: "Altitude", color: lineColor, type: .line) + let l2 = Line(values: values, name: "Altitude", color: lineShadowColor, type: .lineArea) chartLines = [l1, l2] }