react-native-toastier
Version:
A Fully Customizable Toast Component for React Native.
63 lines • 1.37 kB
TypeScript
declare const theme: {
colors: {
base: {
white: string;
black: string;
};
green: {
100: string;
200: string;
300: string;
};
blue: {
100: string;
200: string;
300: string;
};
yellow: {
100: string;
200: string;
300: string;
};
red: {
100: string;
200: string;
300: string;
};
gray: {
100: string;
200: string;
300: string;
400: string;
};
};
toast: {
success: {
color: string;
backgroundColor: string;
borderColor: string;
};
info: {
color: string;
backgroundColor: string;
borderColor: string;
};
danger: {
color: string;
backgroundColor: string;
borderColor: string;
};
default: {
color: string;
backgroundColor: string;
borderColor: string;
};
warning: {
color: string;
backgroundColor: string;
borderColor: string;
};
};
};
export default theme;
//# sourceMappingURL=theme.d.ts.map