> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Change doors icon

> Customize the color, image, and size of the door interaction icon.

## How to change the color

To change the icon colors, edit the `doors_creator/integrations/cl_integrations.lua` file and edit the lines about color:

```lua theme={null}
-- r = red, g = green, b = blue, a = opacity
-- All values are from 0 to 255
-- If all colors are set to 255, the image will have the default color
color = {
    r = 50,
    g = 255,
    b = 50,
    a = 255,
}
```

## How to change the icon/image

To change the icon/image, simply replace the images in the `doors_creator/icons/` folder — be sure to use the exact same names.

## How to change the size

The scale can be edited directly in the in-game menu, but you can also adjust the `x` and `y` values if needed in the `doors_creator/integrations/cl_integrations.lua` file:

```lua theme={null}
-- image width
x = 0.03,

-- image height
y = 0.04,
```


## Related topics

- [Toggle icon display](/doors-creator/client/toggle-icon-display.md)
- [Create door](/doors-creator/server/create-door.md)
- [Update door](/doors-creator/server/update-door.md)
- [Doors Creator](/doors-creator/home.md)
- [Client](/doors-creator/client/index.md)
