Falcon
Yönetici
Kod:
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>Tema Değiştir</title>
<style>
body {
font-family: Arial;
transition: background 0.3s, color 0.3s;
background: white;
color: black;
text-align: center;
padding: 100px;
}
button {
padding: 10px 20px;
background: #333;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
}
.dark {
background: #121212;
color: #f5f5f5;
}
.dark button {
background: #f5f5f5;
color: #121212;
}
</style>
</head>
<body>
<h1>Gece / Gündüz Teması</h1>
<button onclick="toggleTheme()">Temayı Değiştir</button>
<script>
function toggleTheme() {
document.body.classList.toggle("dark");
}
</script>
</body>
</html>