In this section we are going to learn how to change the Theme style.
Changing the reducer file Settings.jsIn this method, open the Settings.js file which you can find inside the src/appRedux/reducers/ folder.
Here in this file, you will find a initialSettings constant object
const initialSettings = {
....
themeType: THEME_TYPE_SEMI_DARK,
...
};
The Theme Type property could have one of three values given below:
-
THEME_TYPE_LITE
To set Lite Sidebar -
THEME_TYPE_DARK
To set Dark Theme
-
THEME_TYPE_SEMI_DARK
To set Dark Sidebar
So, this is all about changing the vertical navigation style using Redux