darkreader.user.js (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
// ==UserScript==
// @name Dark Reader (clay-witch)
// @icon https://darkreader.org/images/darkreader-icon-256x256.png
// @description Configures the DarkReader userscript with the clay-witch colorscheme
// @homepageURL https://codeberg.org/trickyni/clay-witch.userscript
// @downloadURL https://codeberg.org/trickyni/clay-witch.userscript/raw/branch/main/darkreader.user.js
// @updateURL https://codeberg.org/trickyni/clay-witch.userscript/raw/branch/main/darkreader.user.js
// @run-at document-end
// @grant none
// @match https://*.wikipedia.org/*
// @match https://github.com/*
// @match https://reddit.com/*
// @require https://cdn.jsdelivr.net/npm/darkreader/darkreader.min.js
// @noframes
// ==/UserScript==
DarkReader.enable(
{
mode: 0,
lightSchemeTextColor: "#3b3228",
lightSchemeBackgroundColor: "#bca782",
brightness: 100,
contrast: 100,
sepia: 100,
useFont: true,
fontFamily: "serif",
},
{
css: `
a { color: #15156b !important; }
`,
},
);
// a:visited { color: #842310 !important; }
|