theme.js 452 B

123456789101112131415161718192021
  1. const theme = {
  2. colors: {
  3. lightred: '#f0b0b0',
  4. red: '#f03535',
  5. black: '#393939',
  6. darkgrey: '#5d6a6b',
  7. grey: '#7f8c8d',
  8. lightgrey: '#95a5a5',
  9. lighterblue: '#d6e4f0',
  10. lightblue: '#b0d3f0',
  11. blue: '#4482c3',
  12. darkblue: '#285680',
  13. darkerblue: '#204567',
  14. offWhite: '#EDEDED'
  15. },
  16. maxWidth: '1000px',
  17. bs: '0 12px 24px 0 rgba(0,0,0,0.09)',
  18. bsSmall: '0 5px 10px 0 rgba(0,0,0,0.19)'
  19. }
  20. export default theme