diff options
author | 0neGal <mail@0negal.com> | 2024-12-20 13:09:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-20 13:09:12 +0100 |
commit | 28130f46eb9c167671994b47b77b926386002ac2 (patch) | |
tree | 26185cbcba747df98e6de6d7e225777093c6720c /src/app/js/toasts.js | |
parent | 8fddf38701f50015ee8f61ce7bc8978f1dcebfd3 (diff) | |
parent | b9c0243d6433550784116fac7eec462cc5ae2a79 (diff) | |
download | Viper-28130f46eb9c167671994b47b77b926386002ac2.tar.gz Viper-28130f46eb9c167671994b47b77b926386002ac2.zip |
Merge pull request #248 from Jan200101/PR/protocol
feat: support thunderstore ror2mm protocol for installing mods
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 } |