@madeja-studio/telar
Version:
UI component library by Madeja Studio
15 lines (13 loc) • 384 B
text/typescript
import type { CoreTheme } from '../../theme/core';
export const defaultTheme = {
color: {
error: {
background: (theme: CoreTheme) => theme.color.danger,
text: (theme: CoreTheme) => theme.color.text.onColor,
},
success: {
background: (theme: CoreTheme) => theme.color.primary,
text: (theme: CoreTheme) => theme.color.text.onColor,
},
},
};