Change Themes

Information related to the theme system

Currently, the theme system is under development. It is advised that you do NOT modify these settings yet.

Open lua\modules\identix\cfg\cl_cfg_themes.lua and locate the following setting:

cfg.themes.current = 'default'

The default value can be changed to set a different theme. The theme name must match what is provided in the cfg.themes.list table.

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

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.

Last updated