File size: 835 Bytes
9c6c4fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
js_func = """
function refresh() {
    const url = new URL(window.location);

    if (url.searchParams.get('__theme') !== 'dark') {
        url.searchParams.set('__theme', 'dark');
        window.location.href = url.href;
    }
}
"""

css_func = """
.sidebar{
    background-color: (--block-border-color) !important;
    border-right: #373737 !important;
    border-right-width: 3px !important;
    border-right-style: solid !important;
}
.post{
    color: #1c1a1a !important;
    font-size: 0.8rem !important;
    padding: 4px 2px !important;
}
.highlight{
    color: #1c1a1a !important;
    font-size: 0.8rem !important;
    padding: 4px 2px !important;
}
.prose a{
    color: #aba9a9 !important;
}
.prose a:visited{
    color: #6b6767 !important;
}
.prose hr {
    margin-top: 2em !important;
    margin-bottom: 2em !important;

"""