+ 2
Is there any shortcut in javascript for changing theme in this calculator?
https://code.sololearn.com/WZ6oy0UnGZA1/?ref=app I've used every button tag's I'd to make changes in it.
1 Respuesta
+ 2
Use css variables to group default theme :root and [data-theme="dark"].
Set light or dark mode by just change the attribute of documentElement which is :root element.
Here an example:
https://code.sololearn.com/W66D9Fd5ms0N/?ref=app
Try to change the default theme from light to dark mode by setting <html theme="dark">...