Skip to content

Instantly share code, notes, and snippets.

@sixem
Created July 16, 2019 15:25
Show Gist options
  • Save sixem/ee188b95e8b9ab85c2acc045eee8c3c1 to your computer and use it in GitHub Desktop.
Save sixem/ee188b95e8b9ab85c2acc045eee8c3c1 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Darker local text browsing
// @version 0.1
// @description Darkens the local .txt file page
// @match file:///*.txt
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
body
{
background-color: #222222;
color: #989898;
font-family: "Lucida Console", Monaco, monospace;
font-size: 12px;
}
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment