diff options
Diffstat (limited to 'src/app/js/toasts.js')
-rw-r--r-- | src/app/js/toasts.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/app/js/toasts.js b/src/app/js/toasts.js index bd9d03a..c5cdd40 100644 --- a/src/app/js/toasts.js +++ b/src/app/js/toasts.js @@ -24,6 +24,10 @@ toasts.show = (properties) => { toast.fg = "#FFFFFF"; toast.bg = "#FF9B85"; break + case "info": + toast.fg = "#FFFFFF"; + toast.bg = "rgb(var(--blue))"; + break } |