]> git.lizzy.rs Git - micro.git/blob - runtime/help/colors.md
Merge branch 'python-highlight-zero' of https://github.com/a11ce/micro into a11ce...
[micro.git] / runtime / help / colors.md
1 # Colors
2
3 This help page aims to cover two aspects of micro's syntax highlighting engine:
4
5 * How to create colorschemes and use them.
6 * How to create syntax files to add to the list of languages micro can
7   highlight.
8
9 ## Colorschemes
10
11 To change your colorscheme, press Ctrl-e in micro to bring up the command
12 prompt, and type:
13
14 ```
15 set colorscheme twilight
16 ```
17
18 (or whichever colorscheme you choose).
19
20 Micro comes with a number of colorschemes by default. The colorschemes that you
21 can display will depend on what kind of color support your terminal has.
22
23 Omit color-link default "[fg color],[bg color]" will make the background color match the terminal's, and transparency if set.
24
25 Modern terminals tend to have a palette of 16 user-configurable colors (these
26 colors can often be configured in the terminal preferences), and additional
27 color support comes in three flavors.
28
29 * 16-color: A colorscheme that uses the 16 default colors will always work but
30   will only look good if the 16 default colors have been configured to the
31   user's liking. Using a colorscheme that only uses the 16 colors from the
32   terminal palette will also preserve the terminal's theme from other
33   applications since the terminal will often use those same colors for other
34   applications. Default colorschemes of this type include `simple` and
35   `solarized`.
36
37 * 256-color: Almost all terminals support displaying an additional 240 colors
38   on top of the 16 user-configurable colors (creating 256 colors total).
39   Colorschemes which use 256-color are portable because they will look the
40   same regardless of the configured 16-color palette. However, the color
41   range is fairly limited due to the small number of colors available.
42   Default 256-color colorschemes include `monokai`, `twilight`, `zenburn`,
43   `darcula` and more.
44
45 * true-color: Some terminals support displaying "true color" with 16 million
46   colors using standard RGB values. This mode will be able to support
47   displaying any colorscheme, but it should be noted that the user-configured
48   16-color palette is ignored when using true-color mode (this means the
49   colors while using the terminal emulator will be slightly off). Not all
50   terminals support true color but at this point most do. True color
51   support in micro is off by default but can be enabled by setting the
52   environment variable `MICRO_TRUECOLOR` to 1.  In addition your terminal
53   must support it (usually indicated by setting `$COLORTERM` to `truecolor`).
54   True-color colorschemes in micro typically end with `-tc`, such as
55   `solarized-tc`, `atom-dark-tc`, `material-tc`, etc... If true color is not
56   enabled but a true color colorscheme is used, micro will do its best to
57   approximate the colors to the available 256 colors.
58
59 Here is the list of colorschemes:
60
61 ### 256 color
62
63 These should work and look nice in most terminals. I recommend these
64 themes the most.
65
66 * `monokai` (also the `default` colorscheme)
67 * `zenburn`
68 * `gruvbox`
69 * `darcula`
70 * `twilight`
71 * `railscast`
72 * `bubblegum`
73
74 ### 16 color
75
76 These may vary widely based on the 16 colors selected for your terminal.
77
78 * `simple`
79 * `solarized` (must have the solarized color palette in your terminal to use
80    this colorscheme properly)
81 * `cmc-16`
82 * `cmc-paper`
83 * `geany`
84
85 ### True color
86
87 True color requires your terminal to support it. This means that the
88 environment variable `COLORTERM` should have the value `truecolor`, `24bit`,
89 or `24-bit`. In addition, to enable true color in micro, the environment
90 variable `MICRO_TRUECOLOR` must be set to 1. Note that you have to create
91 and set this variable yourself.
92
93 * `solarized-tc`: this is the solarized colorscheme for true color.
94 * `atom-dark-tc`: this colorscheme is based off of Atom's "dark" colorscheme.
95 * `cmc-tc`: A true colour variant of the cmc theme.  It requires true color to
96   look its best. Use cmc-16 if your terminal doesn't support true color.
97 * `gruvbox-tc`: The true color version of the gruvbox colorscheme
98 * `github-tc`: The true color version of the Github colorscheme
99 * `material-tc`: Colorscheme based off of Google's Material Design palette
100
101 ## Creating a Colorscheme
102
103 Micro's colorschemes are also extremely simple to create. The default ones can
104 be found
105 [here](https://github.com/zyedidia/micro/tree/master/runtime/colorschemes).
106
107 Custom colorschemes should be placed in the `~/.config/micro/colorschemes`
108 directory.
109
110 A number of custom directives are placed in a `.micro` file. Colorschemes are 
111 typically only 18-30 lines in total.
112
113 To create the colorscheme you need to link highlight groups with
114 actual colors. This is done using the `color-link` command.
115
116 For example, to highlight all comments in green, you would use the command:
117
118 ```
119 color-link comment "green"
120 ```
121
122 Background colors can also be specified with a comma:
123
124 ```
125 color-link comment "green,blue"
126 ```
127
128 This will give the comments a blue background.
129
130 If you would like no foreground you can just use a comma with nothing in front:
131
132 ```
133 color-link comment ",blue"
134 ```
135
136 You can also put bold, italic, or underline in front of the color:
137
138 ```
139 color-link comment "bold red"
140 ```
141
142 ---
143
144 There are three different ways to specify the color.
145
146 Color terminals usually have 16 colors that are preset by the user. This means
147 that you cannot depend on those colors always being the same. You can use those
148 colors with the names `black, red, green, yellow, blue, magenta, cyan, white`
149 and the bright variants of each one (brightblack, brightred...).
150
151 Then you can use the terminals 256 colors by using their numbers 1-256 (numbers
152 1-16 will refer to the named colors).
153
154 If the user's terminal supports true color, then you can also specify colors
155 exactly using their hex codes. If the terminal is not true color but micro is
156 told to use a true color colorscheme it will attempt to map the colors to the 
157 available 256 colors.
158
159 Generally colorschemes which require true color terminals to look good are
160 marked with a `-tc` suffix and colorschemes which supply a white background are
161 marked with a `-paper` suffix.
162
163 ---
164
165 Here is a list of the colorscheme groups that you can use:
166
167 * default (color of the background and foreground for unhighlighted text)
168 * comment
169 * identifier
170 * constant
171 * statement
172 * symbol
173 * preproc
174 * type
175 * special
176 * underlined
177 * error
178 * todo
179 * selection (Color of the text selection)
180 * statusline (Color of the statusline)
181 * tabbar (Color of the tabbar that lists open files)
182 * indent-char (Color of the character which indicates tabs if the option is
183   enabled)
184 * line-number
185 * gutter-error
186 * gutter-warning
187 * diff-added
188 * diff-modified
189 * diff-deleted
190 * cursor-line
191 * current-line-number
192 * color-column
193 * ignore
194 * scrollbar
195 * divider (Color of the divider between vertical splits)
196 * message (Color of messages in the bottom line of the screen)
197 * error-message (Color of error messages in the bottom line of the screen)
198
199 Colorschemes must be placed in the `~/.config/micro/colorschemes` directory to
200 be used.
201
202 ---
203
204 In addition to the main colorscheme groups, there are subgroups that you can
205 specify by adding `.subgroup` to the group. If you're creating your own custom
206 syntax files, you can make use of your own subgroups.
207
208 If micro can't match the subgroup, it'll default to the root group, so  it's
209 safe and recommended to use subgroups in your custom syntax files.
210
211 For example if `constant.string` is found in your colorscheme, micro will us
212 that for highlighting strings. If it's not found, it will use constant instead.
213 Micro tries to match the largest set of groups it can find in the colorscheme
214 definitions, so if, for examle `constant.bool.true` is found then micro will
215 use that. If `constant.bool.true` is not found but `constant.bool` is found
216 micro will use `constant.bool`. If not, it uses `constant`. 
217
218 Here's a list of subgroups used in micro's built-in syntax files.
219
220 * comment.bright (Some filetypes have distinctions between types of comments)
221 * constant.bool
222 * constant.bool.true
223 * constant.bool.false
224 * constant.number 
225 * constant.specialChar
226 * constant.string
227 * constant.string.url 
228 * identifier.class (Also used for functions)
229 * identifier.macro
230 * identifier.var
231 * preproc.shebang (The #! at the beginning of a file that tells the os what
232   script interpreter to use)
233 * symbol.brackets (`{}()[]` and sometimes `<>`)
234 * symbol.operator (Color operator symbols differently)
235 * symbol.tag (For html tags, among other things)
236 * type.keyword (If you want a special highlight for keywords like `private`)
237
238 In the future, plugins may also be able to use color groups for styling.
239
240
241 ## Syntax files
242
243 The syntax files are written in yaml-format and specify how to highlight
244 languages.
245
246 Micro's builtin syntax highlighting tries very hard to be sane, sensible and
247 provide ample coverage of the meaningful elements of a language. Micro has
248 syntax files built in for over 100 languages now! However, there may be 
249 situations where you find Micro's highlighting to be insufficient or not to
250 your liking. The good news is that you can create your own syntax files, and
251 place them in  `~/.config/micro/syntax` and Micro will use those instead.
252
253 ### Filetype definition
254
255 You must start the syntax file by declaring the filetype:
256
257 ```
258 filetype: go
259 ```
260
261 ### Detect definition
262
263 Then you must provide information about how to detect the filetype:
264
265 ```
266 detect:
267     filename: "\\.go$"
268 ```
269
270 Micro will match this regex against a given filename to detect the filetype.
271 You may also provide an optional `header` regex that will check the first line
272 of the file. For example:
273
274 ```
275 detect:
276     filename: "\\.ya?ml$"
277     header: "%YAML"
278 ```
279
280 ### Syntax rules
281
282 Next you must provide the syntax highlighting rules. There are two types of
283 rules: patterns and regions. A pattern is matched on a single line and usually
284 a single word as well. A region highlights between two patterns over multiple
285 lines and may have rules of its own inside the region.
286
287 Here are some example patterns in Go:
288
289 ```
290 rules:
291     - special: "\\b(break|case|continue|default|go|goto|range|return)\\b"
292     - statement: "\\b(else|for|if|switch)\\b"
293     - preproc: "\\b(package|import|const|var|type|struct|func|go|defer|iota)\\b"
294 ```
295
296 The order of patterns does matter as patterns lower in the file will overwrite
297 the ones defined above them.
298
299 And here are some example regions for Go:
300
301 ```
302 - constant.string:
303     start: "\""
304     end: "\""
305     rules:
306         - constant.specialChar: "%."
307         - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
308         - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})"
309
310 - comment:
311     start: "//"
312     end: "$"
313     rules:
314         - todo: "(TODO|XXX|FIXME):?"
315
316 - comment:
317     start: "/\\*"
318     end: "\\*/"
319     rules:
320         - todo: "(TODO|XXX|FIXME):?"
321 ```
322
323 Notice how the regions may contain rules inside of them. Any inner rules that
324 are matched are then skipped when searching for the end of the region. For
325 example, when highlighting `"foo \" bar"`, since `\"` is matched by an inner
326 rule in the region, it is skipped. Likewise for `"foo \\" bar`, since `\\` is
327 matched by an inner rule, it is skipped, and then the `"` is found and the
328 string ends at the correct place.
329
330 You may also explicitly mark skip regexes if you don't want them to be
331 highlighted. For example:
332
333 ```
334 - constant.string:
335     start: "\""
336     end: "\""
337     skip: "\\."
338     rules: []
339 ```
340
341 #### Includes
342
343 You may also include rules from other syntax files as embedded languages. For
344 example, the following is possible for html:
345
346 ```
347 - default:
348     start: "<script.*?>"
349     end: "</script.*?>"
350     rules:
351         - include: "javascript"
352
353 - default:
354     start: "<style.*?>"
355     end: "</style.*?>"
356     rules:
357         - include: "css"
358 ```
359
360 ## Syntax file headers
361
362 Syntax file headers are an optimization and it is likely you do not need to
363 worry about them.
364
365 Syntax file headers are files that contain only the filetype and the detection
366 regular expressions for a given syntax file. They have a `.hdr` suffix and are
367 used by default only for the pre-installed syntax files. Header files allow
368 micro to parse the syntax files much faster when checking the filetype of a
369 certain file. Custom syntax files may provide header files in
370 `~/.config/micro/syntax` as well but it is not necessary (only do this if you
371 have many (100+) custom syntax files and want to improve performance).