> 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

{% 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.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://identix.rlib.io/faq/change-themes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
