-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserchrome.css
66 lines (54 loc) · 1.15 KB
/
userchrome.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
/* For styling the entire Joplin app (except the rendered Markdown, which is defined in `userstyle.css`) */
/* Styling for Dark Theme */
/* Plain Texts and LaTex */
.ace_text.ace_xml {
color: aliceblue !important;
}
/* Checkboxes */
.ace_variable {
color: aliceblue !important;
}
/* Headings */
.ace_heading {
color: red !important;
}
/* Stongs */
.ace_string.ace_strong {
color: gold !important;
font-weight: bold !important;
}
/* Italics */
.ace_string.ace_emphasis {
color: gold !important;
font-style: italic !important;
}
/* Line Breaks */
.ace_constant.ace_language.ace_escape {
color: gold !important;
}
/* Lists and Checkboxes */
.ace_list {
color: palegoldenrod !important;
}
/* Inline Codes and Codeblocks */
.ace_support.ace_function {
color: limegreen !important;
}
/* Link and Image Texts */
.ace_string {
color: dodgerblue !important;
}
/* Links and Images */
.ace_markup.ace_underline {
color: dodgerblue !important;
}
/* Input Fields: Search (Global, Local), Note Title */
/* .header input { */
input {
border-radius: 14px !important;
border: 1px solid rgb(85, 85, 85);
outline: none;
/*
background-color: #888888 !important;
*/
}