Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
:root { --bg: #fff; --text: #212529; } @media (prefers-color-scheme: dark) { :root { --bg: #1a1a2e; --text: #e0e0e0; } } body { background: var(--bg); color: var(--text); }
Result
Open