mirror of
https://github.com/appwrite/appwrite
synced 2026-05-02 19:07:18 +00:00
23 lines
538 B
HTML
23 lines
538 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Themed website</title>
|
|
<style>
|
|
/* Light theme */
|
|
body {
|
|
background-color: #ffffff;
|
|
color: #000000;
|
|
}
|
|
/* Dark theme */
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body></body>
|
|
</html>
|