Dark Mode Setting
To have Dark mode enabled, replace the reference of bootstrap.min.css
stylesheet file to bootstrap-dark.min.css
and app.min.css
to app-dark.min.css
in the templates/element/head-css.php
and make sure to update the webroot/js/app.js
has initSettings() function which you need to comment out. Because it will set to default the light version.
Light Mode Setting
To have Light mode enabled,
replace the reference of bootstrap-dark.min.css
stylesheet file to bootstrap.min.css
and app-dark.min.css
to app.min.css
in the
templates/element/head-css.php
and make sure to update
the webroot/js/app.js
has initSettings()
function which you need to
comment out. Because it will set
to default the light version.