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.ts 314B

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