# Configuration

The configuration is found at **.../plugins/PlaceholderAPI/config.yml** under the **gradient2** section

### ⚙️ Settings

```yaml
reset-formatting-afterwards: true
```

{% hint style="info" %}
**true** -> Converted text gets the reset modifier (like "**\&r**") appended to it at the end to remove formatting
{% endhint %}

### [➕](https://emojipedia.org/plus/) Add your own preset

```yaml
presets:
  template:
    colors: ''
    style: ''
```

{% hint style="warning" %}
The name of the preset (in this case **template**) must **not** have any underscore characters (**\_**), otherwise you might not be able to use it
{% endhint %}

{% hint style="info" %}
The **colors** value (hex codes) must be separated with a comma (**,**), for example:

<pre class="language-yaml"><code class="lang-yaml"><strong>colors: '#FFFFFF,#808080' 
</strong></code></pre>

and follow the same hex color code pattern (no mix and match), for example:

```yaml
colors: '&#FFFFFF,#808080' # This doesn't work and will cause errors
```

\
This field **cannot** be left empty.
{% endhint %}

{% hint style="info" %}
The **style** value (formatting/modifiers) must be separated with a comma (**,**), for example:

```yaml
style: 'l,o,n'
```

\
This field **can** be left empty (no formatting will be used)
{% endhint %}
