2021-11-15 08:37:54 +00:00
|
|
|
import { font, colors, colorMap, spacing, shape, typography, breakpoints } from '../Tokens';
|
2022-08-01 07:04:23 +00:00
|
|
|
import { createWebTheme } from '../functions.web';
|
2021-04-29 09:24:39 +00:00
|
|
|
|
|
|
|
export default createWebTheme({
|
|
|
|
font,
|
|
|
|
colors,
|
|
|
|
colorMap,
|
|
|
|
spacing,
|
|
|
|
shape,
|
2021-10-08 08:05:16 +00:00
|
|
|
typography,
|
2021-11-15 08:37:54 +00:00
|
|
|
breakpoints
|
2021-04-29 09:24:39 +00:00
|
|
|
});
|