> For the complete documentation index, see [llms.txt](https://arivia.rlib.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://arivia.rlib.io/developers/entities/accent.md).

# ▸accent

## Alias

&#x20;           *`accent, color, Color, clr`*

## Source

&#x20;           *`added in Arivia v3`*

## Requires

&#x20;           *`no additional requirements`*

## Type

&#x20;           *`color ( r, g, b, a )`*

## Example

{% tabs %}
{% tab title="addentities.lua" %}

```lua
DarkRP.createEntity( 'Tip Jar',
{
    ent         = 'darkrp_tip_jar',
    model       = 'models/props_lab/jar01a.mdl',
    price       = 0,
    max         = 2,
    cmd         = 'tipjar',
    allowTools  = true,
    accent      = Color( 183, 27, 116 ),
} )
```

{% endtab %}

{% tab title="alias" %}

```lua
DarkRP.createEntity( 'Tip Jar',
{
    ent         = 'darkrp_tip_jar',
    model       = 'models/props_lab/jar01a.mdl',
    price       = 0,
    max         = 2,
    cmd         = 'tipjar',
    allowTools  = true,
    color       = Color( 183, 27, 116 ),
} )
```

{% endtab %}
{% endtabs %}

## Output

If you supply an accent color for an item; the circle to the far right will be given that color such as in the example below:

![](/files/-MJvcrRzGLkeVAWeqzoC)

## Notes

{% hint style="info" %}
By default, if an accent color is not provided for entities; the circle will be grey.
{% endhint %}
