> For the complete documentation index, see [llms.txt](https://next-script-tm.gitbook.io/next-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://next-script-tm.gitbook.io/next-scripts/paid-resources/notify/configuration.md).

# Configuration

```lua
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](https://htmlcolorcodes.com/)

***

### Icon

[FontAwesome](https://fontawesome.com/search?o=r\&m=free) icons. If there is not one provided, the ***Default Icon*** is used

***
