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 }