blob: ec102751f6ebf3c6a8cc249f1f0a7d74285eaaab (
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
|
// ==UserScript==
// @name 0x0.st
// @include *://0x0.st*
// ==/UserScript==
/* ~/.config/qutebrowser/greasemonkey/0x0.css.js :: */
GM_addStyle(`
body {
background: var(--color-bg) !important;
color: var(--color-fg) !important;
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;
}
`);
|