Skip to content

Instantly share code, notes, and snippets.

View rkuslak's full-sized avatar

rkuslak

View GitHub Profile
@rkuslak
rkuslak / GithubMonokai.js
Last active September 2, 2021 19:19
Github Monokai
// ==UserScript==
// @name GitHub PRE Themer
// @version 1
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');