Hi,
You can follow this step by step guide. https://www.mendix.com/blog/how-to-implement-dark-mode-in-your-apps/
Thanks
Hi Ibrahim,
Please go through the below link, You can make a dark mode.
https://www.clevr.com/blog/add-dark-theme-mendix-app
is it for native or web?
for native you can use the following variable in js: const darkMode = Appearance.getColorScheme() === "dark", to check if the phone is in a dark coloscheme, then if you want to set the color different you can set for example the following to the css attributes of the constants:
primaryLight: darkMode ? "#000000": "#FFFFFF",