add substack.js
trickyni trickyniv56@gmail.com
Tue, 31 Mar 2026 15:23:52 +0300
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;} +`);