react-pur
Version:
React UI component library (using styled-components)
49 lines (46 loc) • 872 B
JavaScript
export default {
// Media Queries
mediaQueries: {
sm: 540,
md: 720,
lg: 960,
xl: 1140,
},
colors: {
// Main colors
primary: '#2196F3',
secondary: '#008489', // TMP pour test airbnb
disabled: '#636c72',
// State-related colors
danger: {
background: '#FFCDD2',
color: '#F44336',
text: '#B71C1C',
},
default: {
background: '#ffffff',
color: '#000000',
text: '#000000',
},
info: {
background: '#B3E5FC',
color: '#03A9F4',
text: '#01579B',
},
neutral: {
background: '#eeeeee',
color: '#555555',
text: 'rgba(0,0,0,.44)',
},
success: {
background: '#B2DFDB',
color: '#009688',
text: '#004D40',
},
warning: {
background: '#FFF9C4',
color: '#FFEB3B',
text: '#F57F17',
},
},
};