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.ts 253B

1234567891011
  1. import { breakpoints, colorMap, font, shape, spacing, typography } from '../Tokens';
  2. import { createWebTheme } from '../functions.web';
  3. export default createWebTheme({
  4. font,
  5. colorMap,
  6. spacing,
  7. shape,
  8. typography,
  9. breakpoints
  10. });