summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Fabian Kirchner <kirchner@posteo.de>2024-08-13 11:34:50 +0200
committerLibravatar Fabian Kirchner <kirchner@posteo.de>2024-08-13 11:34:50 +0200
commit123e242f97485dc96d074cca398fca97b8b4a21b (patch)
tree3578ee4b1d5777df16ce652e17e04fe0a038559f
parent59c31c328852ed671d8e7cc3d3c1bb8321e49708 (diff)
fix: use dull green for min temp
-rw-r--r--app/Sensor.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Sensor.hs b/app/Sensor.hs
index 08f4f11..21c7f09 100644
--- a/app/Sensor.hs
+++ b/app/Sensor.hs
@@ -564,7 +564,7 @@ weatherForecast = do
_ -> summary.symbol_code
)
tempMax = P.color P.Red (P.pretty (show details.air_temperature_max))
- tempMin = P.color P.Green (P.pretty (show details.air_temperature_min))
+ tempMin = P.colorDull P.Green (P.pretty (show details.air_temperature_min))
nfMdWeatherCloudy = "\xf0590"
nfMdWeatherFog = "\xf0591"