all repos — clay-witch.userscript @ 52ee7cf0d3b112488411e0aa5660036a78d68cf6

An earthy, mystical colorscheme for a variety of applications.

add substack.js
trickyni trickyniv56@gmail.com
Tue, 31 Mar 2026 15:23:52 +0300
commit

52ee7cf0d3b112488411e0aa5660036a78d68cf6

parent

165e25ad679122c14ffb1e631693bf5c2bca4a07

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

jump to
A substack.js

@@ -0,0 +1,22 @@

+// ==UserScript== +// @name Substack (Clay-Witch) +// @description the clay-witch theme for Substack +// @version 0.1.0 +// @run-at document-end +// @homepageURL https://codeberg.org/trickyni/clay-witch.userscript +// @grant GM_addStyle +// @match https://*.substack.com/* +// ==/UserScript== + +GM_addStyle(` + *, h3, .single-post-container { + font-family: "serif" !important; + color :#3b3228 !important; + background-color: #bca782 !important; + } + a { color: #15156b !important; } + a:visited { color: #842310 !important; } + .post-header {border-color: #bca782 !important;} + .subscribe-widget, .main-menu, button { display: none !important; } + div.pc-justifyContent-space-between:nth-child(2) {height:0; display: none;} +`);