We bring already configured a theme of dark mode. The exchange of variables is done in two situations:
The user doesn't need to do anything, the change will be done automatically according to the prefers-color-scheme
css rule
If there is a need to lock this automatic switch or make a theme selector for the user, just add a class in the body for their respective themes:
Example :To dark mode
<html class="dark">
...
</html
Example :To light mode
<html class="light">
...
</html
List of variables that change with the change of theme if there is a need to use it in a custom component, these are the variables changed in the change of the theme that reflect in all the components of the framework
Example : --background
--background_secondary
--text_color
--title_color
--background_third
--background_reset
--shadow_color
--box_shadow
--border_color