From 9af5d718617a9fdd867eb99f04c935f78c8d9252 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Bj=C3=B6rkert?= Date: Fri, 24 Jul 2026 15:46:25 +0200 Subject: [PATCH] Use Trio's colors for the forecast curves --- LoopFollow/Charts/BGChartView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LoopFollow/Charts/BGChartView.swift b/LoopFollow/Charts/BGChartView.swift index 4c390d2c3..e7aa43b3c 100644 --- a/LoopFollow/Charts/BGChartView.swift +++ b/LoopFollow/Charts/BGChartView.swift @@ -1280,7 +1280,7 @@ private struct BGChartCanvas: View, Equatable { y: .value("bg", pt.value), series: .value("series", "zt") ) - .foregroundStyle(Color(.systemGray)) + .foregroundStyle(Color("ZT")) .lineStyle(StrokeStyle(lineWidth: 2)) } @@ -1290,7 +1290,7 @@ private struct BGChartCanvas: View, Equatable { y: .value("bg", pt.value), series: .value("series", "iob") ) - .foregroundStyle(Color(.systemBlue)) + .foregroundStyle(Color("Insulin")) .lineStyle(StrokeStyle(lineWidth: 2)) } @@ -1310,7 +1310,7 @@ private struct BGChartCanvas: View, Equatable { y: .value("bg", pt.value), series: .value("series", "uam") ) - .foregroundStyle(Color(.systemPink)) + .foregroundStyle(Color("UAM")) .lineStyle(StrokeStyle(lineWidth: 2)) } }