You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BaseTheme.web.js 346B

12345678910111213141516171819
  1. // @flow
  2. import { font, colors, colorMap, spacing, shape, typography } from '../Tokens';
  3. import { createWebTheme } from '../functions';
  4. export default createWebTheme({
  5. font,
  6. colors,
  7. colorMap,
  8. spacing,
  9. shape,
  10. typography,
  11. breakpoints: {
  12. values: {
  13. '0': 0,
  14. '480': 480
  15. }
  16. }
  17. });