Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ohsik's full-sized avatar
😮
Hola, como estas?

O ohsik

😮
Hola, como estas?
View GitHub Profile
@roachhd
roachhd / README.md
Last active November 19, 2020 14:56
Ode To Dan : Quick switch Themes with javascript

A simple clone of Dan Edens' blog with the day/night persistent toggle ❤️

<script>
// Toggle night theme
var d = document.documentElement,
    t = document.querySelectorAll(".js--toggle-lights")[0],
    m = localStorage.getItem("nightmode");

if(m == "true") {