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.native.js 324B

123456789101112131415
  1. // @flow
  2. import { font, colors, colorMap, spacing, shape, typography } from '../Tokens';
  3. import { createNativeTheme } from '../functions.native';
  4. import updateTheme from './updateTheme.native';
  5. export default createNativeTheme(updateTheme({
  6. font,
  7. colors,
  8. colorMap,
  9. spacing,
  10. shape,
  11. typography
  12. }));