Particle: CSS Variables for Theming
Using CSS variables at the root level allows for seamless theme switching without JavaScript overhead.
:root {
--bg-color: #ffffff;
--text-color: #000000;
}
[data-theme="dark"] {
--bg-color: #000000;
--text-color: #ffffff;
}