1 2 3 4 5 6 7 8
<!doctype html> <style> body::before { content: "light" } @media (prefers-color-scheme: dark) { body::before { content: "dark" } } </style> <body></body>