// ==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/* // @match file://* // @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; }