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

# Change Themes

Information related to the theme system

{% hint style="warning" %}
Currently, the theme system is under development. It is advised that you do NOT modify these settings yet.
{% endhint %}

Open <mark style="color:red;">**`lua\modules\identix\cfg\cl_cfg_themes.lua`**</mark> and locate the following setting:

{% tabs %}
{% tab title="lua\modules\identix\cfg\cl\_cfg\_themes.lua" %}

```lua
cfg.themes.current = 'default'
```

{% endtab %}
{% endtabs %}

The default value can be changed to set a different theme. The theme name must match what is provided in the <mark style="color:red;">**`cfg.themes.list`**</mark> table.

{% tabs %}
{% tab title="Theme List" %}

```lua
cfg.themes.list =
{
    [ 'default' ] =
    {
        pnl         = 'theme_legacy',
        w           = 475,
        h           = 575,
    },
    [ 'modern' ] =
    {
        pnl         = 'theme_modern',
        w           = 475,
        h           = 575,
    },
}
```

{% endtab %}
{% endtabs %}

You can select between **default** or **modern**.

If you specify an invalid theme in the above setting; the system will reset back to the **default** theme.
