diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2024-08-13 11:34:50 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2024-08-13 11:34:50 +0200 |
commit | 123e242f97485dc96d074cca398fca97b8b4a21b (patch) | |
tree | 3578ee4b1d5777df16ce652e17e04fe0a038559f | |
parent | 59c31c328852ed671d8e7cc3d3c1bb8321e49708 (diff) |
fix: use dull green for min temp
-rw-r--r-- | app/Sensor.hs | 2 |
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" |