summaryrefslogtreecommitdiffstats
path: root/.config/vimb/style.css
blob: 4aa6214da423b5dc9899c3e4c84e4c8ba4521302 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
body::-webkit-scrollbar {
    display: none;
}

*,div,pre,textarea,body,input,td,tr,p {
    background-color: #1d2021 !important;
    background-image: none !important;
    color: #ebdbb2 !important;
}
h1,h2,h3,h4 {
    background-color: #1d2021 !important;
    color: #ebdbb2 !important;
}
a {
    color: #458588 !important;
}
a:hover,a:focus {
    color: #458588 !important;
}
a:visited {
    color: #b16286 !important;
}
/* img {
    opacity: .5;
}
img:hover {
    opacity: 1;
} */

/* Hint mode color styling
 * Color scheme: Base16 Eighties (https://github.com/chriskempson/base16)
 *
 * The precedence of the user style is lower than that of the website so you
 * have to mark your style definition to have higher priority.
 */
span[vimbhint^='label'] {
    background-color: #f2f0ec !important;
    border: 1px solid #2d2d2d !important;
    color: #2d2d2d !important;
    font: bold 10pt monospace !important;
    opacity: 1 !important;
    padding: .1em .4em !important;
    text-transform: uppercase !important;
}
span[vimbhint='label focus'] {
    font: bold 13pt monospace !important;
}
*[vimbhint^='hint'] {
    background-color: #ffcc66 !important;
    color: #2d2d2d !important;
}
*[vimbhint='hint focus'] {
    background-color: #6699cc !important;
    color: #2d2d2d !important;
}