import { ToastConfig } from 'src/types'; export const toastColor = { success: '#4caf50', error: '#f44336', warning: '#ff9800', info: '#2196f3', loading: 'gray', }; export const INITIAL_TOP = -200; export const DURATION = 3000; export const TIMING = 700; export const DEFAULT_CONFIG: ToastConfig = { type: 'info', message: 'Info message', duration: DURATION, };