all repos — clay-witch.userscript @ 212e146957637a0012f5b239c66a65531b2b8df8

An earthy, mystical colorscheme for a variety of applications.

add darkreader.js
trickyni trickyniv56@gmail.com
Tue, 31 Mar 2026 15:24:04 +0300
commit

212e146957637a0012f5b239c66a65531b2b8df8

parent

52ee7cf0d3b112488411e0aa5660036a78d68cf6

1 files changed, 32 insertions(+), 0 deletions(-)

jump to
A darkreader.js

@@ -0,0 +1,32 @@

+// ==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 +// @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; }