css get dark mode
<!DOCTYPE html>
<html>
<head>
<style>
body.dark-mode {
background-color: black;
color: white;
}
@media screen and (prefers-color-scheme: light) {
body.dark-mode {
background-color: unset;
color: unset;
}
}
</style>
</head>
<body class="dark-mode">
<p>Text</p>
</body>
</html>