theme.js 480 B

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