Skip to content

Instantly share code, notes, and snippets.

@YKalashnikov
Created November 24, 2019 23:42
Show Gist options
  • Save YKalashnikov/94a38b2978e7e662692803b846759d36 to your computer and use it in GitHub Desktop.
Save YKalashnikov/94a38b2978e7e662692803b846759d36 to your computer and use it in GitHub Desktop.
export const weatherConditions = {
Rain: {
color: '#005BEA',
title: 'Raining',
subtitle: 'Grab a cup of coffee',
icon: 'weather-rainy'
},
Clear: {
color: '#f7f033',
title: 'Super Sunny',
subtitle: 'Wear sunglasses!',
icon: 'weather-sunny'
},
Thunderstorm: {
color: '#525252',
title: 'A Storm is coming',
subtitle: 'Better get inside!',
icon: 'weather-lightning'
},
Clouds: {
color: '#403861',
title: 'Cloudy',
subtitle: 'With a chance of meatballs',
icon: 'weather-cloudy'
},
Snow: {
color: '#00d2ff',
title: 'Snow',
subtitle: 'Get out and build a snowman!',
icon: 'weather-snowy'
},
Drizzle: {
color: '#076585',
title: 'Drizzle',
subtitle: 'Partially raining...',
icon: 'weather-hail'
},
Haze: {
color: '#66A6FF',
title: 'Haze',
subtitle: 'Another name for Partly Raining',
icon: 'weather-hail'
},
Mist: {
color: '#3CD3AD',
title: 'Mist',
subtitle: "Microscopic water droplets",
icon: 'weather-fog'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment