Skip to content

Instantly share code, notes, and snippets.

@garvin
Created December 29, 2021 17:19
Show Gist options
  • Save garvin/dac990c4414310b7ff0ba6b7e3424174 to your computer and use it in GitHub Desktop.
Save garvin/dac990c4414310b7ff0ba6b7e3424174 to your computer and use it in GitHub Desktop.
Black bg chat text for baby
// ==UserScript==
// @name Black bg chat text for baby
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Black bg chat text
// @author Gravin
// @match https://www.tumblr.com/*
// @icon https://www.google.com/s2/favicons?domain=tumblr.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.CX_9D { background-color: #000 !important; color: white !important; }');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment