-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserstyle.css
101 lines (88 loc) · 1.5 KB
/
userstyle.css
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* For styling the rendered Markdown */
#joplin-container-content,
#rendered-md,
#tinymce {
background-color: #0E1415 !important;
}
/* Alabaster Dark */
.hljs {
display: block;
overflow-x: auto;
padding: 0.75rem;
background: #0E1415;
color: #CECECE;
font-size: smaller;
border-color: #708B8D;
border-radius: 0.375rem;
border-style: solid;
border-width: 2px;
}
.hljs-keyword,
.hljs-built_in,
.hljs-type,
.hljs-operator,
.hljs-property,
.hljs-char.escape_,
.hljs-subst,
.hljs-symbol,
.hljs-variable,
.hljs-params,
.hljs-doctag,
.hljs-meta,
.hljs-meta-keyword,
.hljs-section,
.hljs-tag,
.hljs-name,
.hljs-attribute,
.hljs-selector-tag,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-template-tag,
.hljs-template-variable {
color: #CECECE;
}
.hljs-punctuation {
color: #708B8D;
}
.hljs-comment {
color: #DFDF8E;
}
.hljs-regexp,
.hljs-string,
.hljs-meta-string,
.hljs-attr {
color: #95CB82;
}
.hljs-number,
.hljs-literal {
color: #CC8BC9;
}
.hljs-class,
.hljs-function,
.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-title.function_,
.hljs-title.function_.invoke__ {
color: #71ADE7;
}
.hljs-addition {
background-color: #ddffdd;
color: #434343;
}
.hljs-deletion {
background-color: #ffdddd;
color: #434343;
}
/* Fixes */
.hljs-function .hljs-params {
color: #CECECE;
}
.hljs-class .hljs-title {
color: #71ADE7;
}
.hljs-literal .hljs-keyword {
color: #CC8BC9;
}