summaryrefslogtreecommitdiff
path: root/mac/.qutebrowser/greasemonkey/git-scm.css.js
blob: 4451840888fd70bdc639e83c4fd48d6fa9c5605f (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
33
34
35
36
37
38
// ==UserScript==
// @name        git-scm
// @include     *://git-scm.com*
// ==/UserScript==

/* ~/.config/qutebrowser/greasemonkey/git-scm.css.js :: */

GM_addStyle(`
    * {
        font-family: var(--font-family) !important;
    }

    body {
        background: var(--color-bg) !important;
    }

    #masthead, #main {
        background: var(--color-bg1) !important;
    }

    code, pre {
        background: var(--color-bg) !important;
        color: var(--color-code) !important;
    }

    h1, h2, h3, h4, h5, h6 {
        color: var(--color-heading) !important;
    }

    a {
        color: var(--color-link) !important;
        transition: none !important;
    }
    a:hover {
        color: var(--color-active) !important;
    }

`);