@madeja-studio/telar
Version:
UI component library by Madeja Studio
19 lines (16 loc) • 457 B
text/typescript
import type { StyleProp, TextStyle } from 'react-native';
import type { CoreTheme } from '../../theme/core';
export const defaultTheme = {
color: {
regular: (theme: CoreTheme) => theme.color.text.primary,
},
defaults: {
style: {
body: {} as StyleProp<TextStyle>,
caption: {} as StyleProp<TextStyle>,
h1: {} as StyleProp<TextStyle>,
h2: {} as StyleProp<TextStyle>,
h3: {} as StyleProp<TextStyle>,
},
},
};