2021-05-11 08:01:45 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { font, colors, colorMap, spacing, shape, typography } from '../Tokens';
|
|
|
|
import { createNativeTheme } from '../functions.native';
|
|
|
|
|
2021-11-25 18:22:00 +00:00
|
|
|
import updateTheme from './updateTheme.native';
|
2021-11-23 13:02:23 +00:00
|
|
|
|
|
|
|
export default createNativeTheme(updateTheme({
|
2021-05-11 08:01:45 +00:00
|
|
|
font,
|
|
|
|
colors,
|
|
|
|
colorMap,
|
|
|
|
spacing,
|
|
|
|
shape,
|
|
|
|
typography
|
2021-11-23 13:02:23 +00:00
|
|
|
}));
|