Skip to content

Instantly share code, notes, and snippets.

@rayriffy
Created June 25, 2019 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rayriffy/e8bd4a631e6c4360e5988de90d800711 to your computer and use it in GitHub Desktop.
Save rayriffy/e8bd4a631e6c4360e5988de90d800711 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Dark Mode Demo</title>
<style>
html {
background-color: rgb(51, 51, 51);
}
.title {
color: rgb(255, 255, 255);
}
@media (prefers-color-scheme: light) {
html {
background-color: rgb(245, 245, 245);
}
.title {
color: rgb(0, 0, 0);
}
}
</style>
</head>
<body>
<h2 class="title">ริฟฟี่พ่อทุกสถาบัน</h2>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment