From d7f670e2379dcf001199dac9a519be9fac6a4688 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 25 Jun 2023 19:20:31 +0200 Subject: [PATCH] Color Dynamic --- Meteo/Components/ImageWeatherType.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meteo/Components/ImageWeatherType.tsx b/Meteo/Components/ImageWeatherType.tsx index 166294c7..b3de219a 100644 --- a/Meteo/Components/ImageWeatherType.tsx +++ b/Meteo/Components/ImageWeatherType.tsx @@ -18,7 +18,7 @@ export const getImageSource = (weatherType) => { if (temperature < 10) { return '#00aaff'; // Bleu pour les températures froides } else if (temperature > 30) { - return '#fde880'; // Rouge pour les températures chaudes + return '#f80'; // Rouge pour les températures chaudes } else { return '#adcac0'; // Noir par défaut }