# UI Colors

If you want to change the inventory colors when a new player enters to the server, you must do the following this steps:

#### Go to origen\_inventory/config/player.lua

In the sectión Config.UI you can check all indicators or different things to you can remove or change to the players:

```lua
Config.UI = {
    Mini = true, -- Mini UI, only show second inventory if exist, else show main inventory
    ShowPlayerNameOnGiveItem = true,
    Hotbar = true,
    ShowCraftingIndicator = true,
    PlayerInventoryLabel = 'Inventory',
    Color = 'default'
}
```

So If you want to change the color go to the Color section and change to this type of colors:

<figure><img src="https://3936778620-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FPLI7NdIesJTaEUHH6a2U%2Fuploads%2FTHmMEkHhYmWZQIrYyzqE%2Fimage.png?alt=media&#x26;token=80263059-59c3-4457-9ccc-82f882b1eb77" alt=""><figcaption></figcaption></figure>

When you choose the best color for your server you change the name for default color for the other, like this form:

#### Before

```lua
Color = 'default' 
```

#### After

```lua
Color = 'lightYellow'
```
