Skip to content

Instantly share code, notes, and snippets.

@vzsg
Created February 10, 2017 22:36
Show Gist options
  • Save vzsg/b9cf02375c8514e4641d38f0ec5bf989 to your computer and use it in GitHub Desktop.
Save vzsg/b9cf02375c8514e4641d38f0ec5bf989 to your computer and use it in GitHub Desktop.
Userscript to revert GitHub header to the light version
// ==UserScript==
// @name Revert GitHub theme
// @namespace https://github.com
// @version 0.1
// @description try to take over the world!
// @author vzsg
// @match https://*.github.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const elements = document.getElementsByClassName('header-dark');
for (var i = 0; i < elements.length; i++) {
elements[i].classList.remove('header-dark');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment