> For the complete documentation index, see [llms.txt](https://mstudio-1.gitbook.io/mstudio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mstudio-1.gitbook.io/mstudio/kz-resources/editor-6/config.md).

# Config

{% code title="config.lua" %}

```lua
Config = {}

Config.Settings = {
    CommandSettingsMenu = 'notifysettings',
    Default = {
        Settings = {
            position = 'center-right',
            animation = 'spring',
            theme = 'dark',
            sound = true,
            duration = 5000
        },
        Colors = {
            success = '#00ff37',
            error = '#ff0015',
            warning = '#ff9d00',
            info = '#0077ff'
        },
        Icons = {
            success = 'fas fa-check',
            error = 'fas fa-xmark',
            warning = 'fas fa-triangle-exclamation',
            info = 'fas fa-circle-info'
        }
    },
    AvailableIcons = {
        'fas fa-check', 'fas fa-xmark', 'fas fa-triangle-exclamation', 'fas fa-circle-info',
        'fas fa-bell', 'fas fa-star', 'fas fa-heart', 'fas fa-bolt', 'fas fa-shield', 'fas fa-user', 
        'fas fa-gear', 'fas fa-envelope', 'fas fa-cart-shopping', 'fas fa-car', 'fas fa-wallet', 'fas fa-gun', 
        'fas fa-briefcase', 'fas fa-map-location-dot', 'fas fa-key', 'fas fa-handcuffs', 'fas fa-gas-pump', 
        'fas fa-address-book', 'fas fa-pills', 'fas fa-mask-ventilator', 'fas fa-address-card'
    }
}
```

{% endcode %}
