> 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

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://next-script-tm.gitbook.io/next-scripts/paid-resources/notify/configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
