-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.conf
158 lines (130 loc) · 3.26 KB
/
style.conf
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# General settings
[TextView]
indent = 30
tabs =
font =
justify =
linespacing = 3
wrapped-lines-linespacing = 0
# Colorscheme
#
# Colors in this style sheet are based on the Tomorrow Theme. This palette
# provides a clean and balanced default for most desktop themes.
#
# - Light theme: Tomorrow
# - Dark theme: Tomorrow Night
#
# Source: https://github.com/chriskempson/tomorrow-theme
[Tag strong]
weight = PANGO_WEIGHT_BOLD
[Tag emphasis]
style = PANGO_STYLE_ITALIC
[Tag mark]
# For highlighted text (light yellow)
background = #ffd028
background[darktheme] = #b58c1d
[Tag strike]
# For struck-out text (gray)
foreground = #757575
foreground[darktheme] = #979797
strikethrough = true
[Tag code]
# For in-line verbatim text (gray background)
foreground = #4d4d4d
background = #efefef
foreground[darktheme] = #c7c7c7
background[darktheme] = #3c3c3c
family = monospace
[Tag pre]
# For multi-line verbatim blocks (gray background)
foreground = #4d4d4d
paragraph-background = #efefef
foreground[darktheme] = #c7c7c7
paragraph-background[darktheme] = #3c3c3c
family = monospace
wrap-mode = GTK_WRAP_NONE
indent = 20
[Tag link]
# For external links (blue)
foreground = #4271ae
foreground[darktheme] = #81a2be
underline = PANGO_UNDERLINE_SINGLE
[Tag page-link]
# For internal links (blue)
foreground = #4271ae
foreground[darktheme] = #81a2be
[Tag tag]
# For zim tags (orange)
foreground = #e5750a
foreground[darktheme] = #de935f
# Headings
#
# The color of headings is green. Headings' sizes scale relative to font size.
# Differences from Zim's defaults: slightly larger H1 without underline,
# removed italics from H3, slightly larger H4, and removed H6.
[Tag h1]
foreground = #718c00
foreground[darktheme] = #b5bd68
weight = PANGO_WEIGHT_BOLD
scale = 2.0
[Tag h2]
foreground = #718c00
foreground[darktheme] = #b5bd68
weight = PANGO_WEIGHT_BOLD
scale = 1.5
[Tag h3]
foreground = #718c00
foreground[darktheme] = #b5bd68
weight = PANGO_WEIGHT_BOLD
scale = 1.3
[Tag h4]
foreground = #718c00
foreground[darktheme] = #b5bd68
weight = PANGO_WEIGHT_BOLD
scale = 1.2
[Tag h5]
foreground = #718c00
foreground[darktheme] = #b5bd68
weight = PANGO_WEIGHT_BOLD
# Task states
#
# For styling the text next to the task checkboxes.
[Tag checked-checkbox]
# For completed tasks (green)
foreground = #718c00
foreground[darktheme] = #b5bd68
strikethrough = true
[Tag xchecked-checkbox]
# For cancelled tasks (red)
foreground = #c82829
foreground[darktheme] = #cc6666
strikethrough = true
[Tag migrated-checkbox]
# For migrated tasks (orange)
foreground = #e5750a
foreground[darktheme] = #f5871f
[Tag transmigrated-checkbox]
# For trans-migrated tasks (purple)
foreground = #8959a8
foreground[darktheme] = #b294bb
# Task priority
#
# For color-coding task priority in the tasklist. Only background and
# foreground colors are supported (no other styling tags).
[TaskList Prio High]
# For high priority tasks (light red)
background = #e84749
background[darktheme] = #a94242
[TaskList Prio Medium]
# For medium priority tasks (light orange)
background = #ff9d3e
background[darktheme] = #b06530
[TaskList Prio Alert]
# For low priority tasks (light yellow)
background = #ffd028
background[darktheme] = #b58c1d
[TaskList Inactive]
# For inactive tasks (gray)
foreground = #757575
foreground[darktheme] = #969896
# vim: syntax=desktop