all repos — clay-witch.userscript @ 29c2c50ca3844e3f2df0c67cb377f97e5d6357b4

An earthy, mystical colorscheme for a variety of applications.

substack.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
// ==UserScript==
// @name          Substack (Clay-Witch)
// @description   the clay-witch theme for Substack
// @version       0.1.0
// @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
// @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;}
`);