Inventory's system design allows you to customize how the UI looks like by using themes. This section explains how to generate your own theme.

Making a copy of the default theme
First start by making a copy of the default theme:

cd inv/themes/
cp -r default myNewTheme

This will recursively copy the default theme into a new directory where you can start work on the new theme.
Configuring Inventory to use the new theme
Assuming your new theme directory is called 'myNewTheme', you'll need to change include/cfg.php file and edit the $inv_data['theme'] directive to point to the new theme directory:

$inv_data['theme'] = "myNewTheme"

The value must match your directory name where the new theme resides.
Making changes to your theme
You can customize your new theme in the following ways: