Skip to content

Instantly share code, notes, and snippets.

@vrcosta
Last active January 1, 2017 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vrcosta/32019f43eb047d12d7e5e9031be5eae6 to your computer and use it in GitHub Desktop.
Save vrcosta/32019f43eb047d12d7e5e9031be5eae6 to your computer and use it in GitHub Desktop.
window.addEventListener('devicelight', function(e) {
var html = document.querySelector('html');
if (e.value < 100) {
html.classList.remove('light');
html.classList.add('dark');
} else {
html.classList.remove('dark');
html.classList.add('light');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment