appwrite/tests/resources/sites/static-themed/index.html
2025-02-20 13:44:31 +01:00

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>