Dark Mode Setting
You can simply change layout mode to Dark by doing the
below changes in the
file src/app/store/layout/layout-reducers.ts.
update the INIT_STATE object parameter
LAYOUT_MODE: LAYOUT_MODE_TYPES.DARKMODE. It will update the layout mode to Dark mode. No need to change any css or js files.
| Attribute | Value |
|---|---|
LAYOUT_MODE |
LAYOUT_MODE:LAYOUT_MODE_TYPES.DARKMODE |
Light Mode Setting
You can simply change layout mode to Light by doing the
below changes in the
file src/app/store/layout/layout-reducers.ts.
update the INIT_STATE object parameter
LAYOUT_MODE: LAYOUT_MODE_TYPES.LIGHTMODE It will update the layout mode to Light mode. No need to change
any css or js files.
| Attribute | Value |
|---|---|
LAYOUT_MODE |
LAYOUT_MODE:LAYOUT_MODE_TYPES.LIGHTMODE |