@madeja-studio/telar
Version:
UI component library by Madeja Studio
35 lines (34 loc) • 812 B
JavaScript
;
export const defaultTheme = {
color: {
danger: {
background: theme => theme.color.danger,
text: theme => theme.color.text.onColor
},
disabled: {
background: theme => theme.color.background.disabled,
text: theme => theme.color.text.onColor
},
primary: {
background: theme => theme.color.primary,
text: theme => theme.color.text.onColor
},
secondary: {
background: theme => theme.color.secondary,
text: theme => theme.color.text.onColor
},
tertiary: {
background: theme => theme.color.tertiary,
text: theme => theme.color.text.onColor
}
},
defaults: {
hasAutoLoad: true,
hasHapticFeedback: true,
style: {
row: {},
text: {}
}
}
};
//# sourceMappingURL=theme.js.map