Malawi-DCCMS / weather-app

An app to show the weather.
0 stars 0 forks source link

Wrong colors for Green Weather alert severity #174

Closed havardf closed 6 days ago

havardf commented 2 weeks ago

The color constants in common/constants.common:

export const WARNING_COLORS: { [k in 'Red' | 'Yellow' | 'Orange' | 'Green']: string} = {
  Red: 'rgba(198, 0, 0, 0.60)',
  Yellow: 'rgba(255, 230, 0, 0.6)',
  Orange: 'rgba(255, 157, 0, 0.6)',
  Green: 'rgba(255, 157, 0, 0.6)',
};

Both orange and green has now the same orange color.