Light Mode
Light Mode Setting
To change the layout mode to Light in the Vixon template, you can make the following changes in the file.
-
The reducer.ts file located at src/slices/layouts/reducer.ts.
-
Locate the INIT_STATE object within the file. This object contains the initial state of the layout.
-
Find the layoutModeType property within the INIT_STATE object.
-
Update the value of layoutModeType to
LAYOUT_MODE_TYPES.LIGHTMODE. This change will set the layout mode to Dark. -
src/slices/layouts/reducer.ts update the INIT_STATE object parameter
layoutModeType: LAYOUT_MODE_TYPES.LIGHTMODE.