"><img> to paste in an image
Hi,
I apologize for any inconvenience you've experienced. Thank you for your feedback. We are continually working to improve our documentation, including the documentation for the Angular project. Your input is valuable, and we will strive to provide more comprehensive and helpful resources in future updates.
Regarding your previous issue, if you have any further questions or if there are any unresolved concerns, please feel free to share them.
Thanks
<a target="_blank" href="https://preview.keenthemes.com/html/metronic/docs/getting-started/dark-mode">This Link</a>
In this link, if you revise the document for the Angular project, I may actually have found answers to most of my questions.
Hi,
In index.html file, there is JavaScript code responsible for loading the dark theme based on user preferences. This code detects the user's preferred color scheme and sets the theme accordingly.
Ensure that this code is correctly configured to set the theme mode to "dark" when the dark theme is selected. You can find this code in your index.html file:
<script>
if (document.documentElement) {
var defaultThemeMode = "system";
// ...
document.documentElement.setAttribute("data-bs-theme", themeMode);
}
</script>