您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }));