blob: 0c559aadfd32894ffb882bab7134d42dc165bf3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// ==UserScript==
// @name termbin
// @include *://termbin.com*
// ==/UserScript==
/* ~/.config/qutebrowser/greasemonkey/termbin.css.js :: */
GM_addStyle(`
body {
background: var(--color-bg) !important;
color: var(--color-fg) !important;
}
pre {
font-size: var(--font-size) !important;
}
u {
text-decoration: none !important
}
a {
color: var(--color-heading) !important;
text-decoration: none !important;
}
a:visited {
color: var(--color-link) !important;
}
a:hover {
color: var(--color-active) !important;
}
`);
|