Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 528 Bytes
f05d33c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import { toast } from '@zerodevx/svelte-toast'
export const success = (message: string) => toast.push(message, {
theme: {
'--toastBackground': '#4caf50',
'--toastProgressBackground': '#81c784',
'--toastProgressAfterBackground': '#4caf50',
'--toastColor': '#fff',
}
})
export const error = (message: string) => toast.push(message, {
theme: {
'--toastBackground': '#f44336',
'--toastProgressBackground': '#e57373',
'--toastProgressAfterBackground': '#f44336',
'--toastColor': '#fff',
}
}) |