You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
768 B
34 lines
768 B
<!doctype html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="utf-8" /> |
|
<meta name="viewport" content="width=device-width,initial-scale=1" /> |
|
<meta name="color-scheme" content="light dark" /> |
|
|
|
<title>ORLY?</title> |
|
|
|
<style> |
|
:root { |
|
color-scheme: light dark; |
|
} |
|
html, body { |
|
background-color: #fff; |
|
color: #000; |
|
} |
|
@media (prefers-color-scheme: dark) { |
|
html, body { |
|
background-color: #000; |
|
color: #fff; |
|
} |
|
} |
|
</style> |
|
|
|
<link rel="icon" type="image/png" href="/favicon.png" /> |
|
<link rel="stylesheet" href="/global.css" /> |
|
<link rel="stylesheet" href="/bundle.css" /> |
|
|
|
<script defer src="/bundle.js"></script> |
|
</head> |
|
|
|
<body></body> |
|
</html>
|
|
|