Configuration

Config = {}

--[[
    right-center
    right-bottom
    center
    left-center
]]
Config.DefaultAlign = "right-center"

Config.DefaultTitle = "Notification"

Config.DefaultIcon  = "https://cdn.discordapp.com/attachments/1136989226429321357/1161571533999837265/logo2.png?ex=659511ca&is=65829cca&hm=3feda243c701ff05a4521ebecdb7446b189f8d6378a4406f0eeaa1ef59e73fa7&"

-- Milliseconds
Config.DefaultTimeout = 4500

Config.Icons = {
    ["success"] = {
        borderColor     = "#00ff08",
        backgroundColor = "#43a746d7",
        icon            = "fa-solid fa-circle-check"
    },
    ["error"]   = {
        borderColor     = "#ff0000",
        backgroundColor = "#af372ece",
        icon            = ""
    },
    ["info"]    = {
        borderColor     = "#00c3ff",
        backgroundColor = "#3578aed7",
        icon            = ""
    },
    ["warning"] = {
        borderColor     = "#fbff00",
        backgroundColor = "#aaae35d7",
        icon            = ""
    }
}

Default Timeout

How long the message shows up, if timeout is not provided


Border Color & Background Color

Hex color. You can easily get it from here


Icon

FontAwesome icons. If there is not one provided, the Default Icon is used


Last updated