function enableDarkMode() {
if (document.body.style === "background-color: black;") {
// disable dark mode
} else {
document.body.style = "background-color: black;"
Array.from(document.getElementsByTagName("a")).forEach(e => {
e.style.setProperty("color", "white", "important");
});
document.getElementsByTagName("h1")[0].style.color = "white !important"
document.getElementsByTagName("img")[0].style = "box-shadow: 0px 4px 6px 2px #404040;"
}
}
.dark-mode {
position: absolute;
top: 0;
right: 0;
font-size: 13px;
}
.about {
margin-bottom: 80px;
}
.text-center {
text-align: center;
}
.profile-pic {
box-shadow: 0px 4px 6px 2px lightgrey;
border-radius: 50%;
}
img {
vertical-align: middle;
}
img {
border: 0;
}
h1,
h2,
h3,
h4,
h5,
a {
color: #4A4E69 !important;
font-weight: 300;
font-family: 'Open Sans', sans-serif;
}
a:hover {
transition-duration: 0.5s;
color: #d1d3e2 !important;
}
a:not(:hover) {
transition-duration: 0.5s;
color: #4A4E69 !important;
}
.h1,
h1 {
font-size: 36px;
}
<html>
<head>
<title>AnonHexo</title>
<a class="dark-mode" style="text-decoration:none" onclick="enableDarkMode()">Enable Dark Mode</a>
</head>
<body>
<section class="about">
<div class="text-center" style="margin-top:100px"> <img
src="https://avatars1.githubusercontent.com/u/61375258?v=4" width="200" class="profile-pic">
<h1>AnonHexo, Italy</h1>
<div class="socialLinks">
<a href="https://www.github.com/AnonHexo" style="text-decoration:none" target="_blank">GitHub</a>,
<a href="https://www.stackoverflow.com/users/13221104/anonhexo?" style="text-decoration:none"
target="_blank">Stack Overflow</a>,
<a href="https://codepen.io/anonhexo" style="text-decoration:none" target="_blank">Codepen</a>,
<br>
<a href="https://www.youtube.com/channel/UCnnqMGII7LHvvn1LUiU55eg" style="text-decoration:none"
target="_blank">YouTube</a>,
<a href="https://www.instagram.com/jacky.trave" style="text-decoration:none"
target="_blank">Instagram</a>,
<a href="https://www.reddit.com/u/AxonHexo" style="text-decoration:none" target="_blank">Reddit</a>,
<a href="https://www.twitch.tv/AnonHexo" style="text-decoration:none" target="_blank">Twitch</a>
</div>
<!-- <h5>Young 12 y/o back-end developer.</h5>
<div class="text-center" style="margin:20px"> <a href="mailto:" class="" target="_blank"> </a> </div> -->
</div>
</section>
<button onclick="enableDarkMode()">
enable dark mode
</button>
</body>
</html>