THEMING

By default, UI/UX is in dark theme. If you want to change it to light, you just have to go to resources/views/layouts/admin.blade.php and look for the vuetify app element and remove the “dark” attribute as seen below:

<v-app id="inspire" dark>

This uses the vueJS theming method. If you want to configure theme colors for the UX, you can open the file found in: /resources/js/admin/admin.js and update the vueJS theme config. See screenshot below:

After any changes, don’t forget to recompile scripts and clear your browser cache if needed.