Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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