From ea762cec5f357ac4667169fdb155b1e131a7e53d Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sat, 1 Apr 2023 03:46:32 -0700 Subject: [PATCH] Adjust chart colors --- Meshtastic/Views/Nodes/DeviceMetricsLog.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Meshtastic/Views/Nodes/DeviceMetricsLog.swift b/Meshtastic/Views/Nodes/DeviceMetricsLog.swift index cdc25b71..c098d1ce 100644 --- a/Meshtastic/Views/Nodes/DeviceMetricsLog.swift +++ b/Meshtastic/Views/Nodes/DeviceMetricsLog.swift @@ -37,7 +37,7 @@ struct DeviceMetricsLog: View { y: .value("Value", $0.batteryLevel) ) .interpolationMethod(.linear) - .foregroundStyle(.indigo) + .foregroundStyle(.blue) PointMark( x: .value("Hour", $0.time!.formattedDate(format: "ha")), @@ -55,7 +55,7 @@ struct DeviceMetricsLog: View { // Set color for each data in the chart .chartForegroundStyleScale([ "Battery Level" : .blue, - "Channel Utilization": .mint, + "Channel Utilization": .green, "Airtime": .orange ]) .chartLegend(position: .automatic, alignment: .bottom)