BS Notifications Configuration

Config.Notifications = {
    ["success"] = {
        icon = "default", -- you can change the icon to any fontawesome icon
        color = "#01E17B",
    },
    ["warning"] = {
        icon = "default", -- you can change the icon to any fontawesome icon
        color = "#FFD21F",
    },
    ["error"] = {
        icon = "default", -- you can change the icon to any fontawesome icon
        color = "#F04349",
    },
    ["info"] = {
        icon = "default", -- you can change the icon to any fontawesome icon
        color = "#9747FF",
    },
    -- you can add more types of notifications here
    -- get icon from https://fontawesome.com/search
    -- example
    -- ["example"] = {
    --     icon = "fa-solid fa-circle-info",
    --     color = "#9747FF",
    -- },
}