]> git.lizzy.rs Git - micro.git/blob - runtime/help/colors.md
Fix repo.json info in plugin docs (#2313)
[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`, `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` (light theme)
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`: 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 * `material-tc`: Colorscheme based off of Google's Material Design palette
99
100 ## Creating a Colorscheme
101
102 Micro's colorschemes are also extremely simple to create. The default ones can
103 be found
104 [here](https://github.com/zyedidia/micro/tree/master/runtime/colorschemes).
105
106 Custom colorschemes should be placed in the `~/.config/micro/colorschemes`
107 directory.
108
109 A number of custom directives are placed in a `.micro` file. Colorschemes are 
110 typically only 18-30 lines in total.
111
112 To create the colorscheme you need to link highlight groups with
113 actual colors. This is done using the `color-link` command.
114
115 For example, to highlight all comments in green, you would use the command:
116
117 ```
118 color-link comment "green"
119 ```
120
121 Background colors can also be specified with a comma:
122
123 ```
124 color-link comment "green,blue"
125 ```
126
127 This will give the comments a blue background.
128
129 If you would like no foreground you can just use a comma with nothing in front:
130
131 ```
132 color-link comment ",blue"
133 ```
134
135 You can also put bold, italic, or underline in front of the color:
136
137 ```
138 color-link comment "bold red"
139 ```
140
141 ---
142
143 There are three different ways to specify the color.
144
145 Color terminals usually have 16 colors that are preset by the user. This means
146 that you cannot depend on those colors always being the same. You can use those
147 colors with the names `black, red, green, yellow, blue, magenta, cyan, white`
148 and the bright variants of each one (brightblack, brightred...).
149
150 Then you can use the terminals 256 colors by using their numbers 1-256 (numbers
151 1-16 will refer to the named colors).
152
153 If the user's terminal supports true color, then you can also specify colors
154 exactly using their hex codes. If the terminal is not true color but micro is
155 told to use a true color colorscheme it will attempt to map the colors to the 
156 available 256 colors.
157
158 Generally colorschemes which require true color terminals to look good are
159 marked with a `-tc` suffix and colorschemes which supply a white background are
160 marked with a `-paper` suffix.
161
162 ---
163
164 Here is a list of the colorscheme groups that you can use:
165
166 * default (color of the background and foreground for unhighlighted text)
167 * comment
168 * identifier
169 * constant
170 * statement
171 * symbol
172 * preproc
173 * type
174 * special
175 * underlined
176 * error
177 * todo
178 * selection (Color of the text selection)
179 * statusline (Color of the statusline)
180 * tabbar (Color of the tabbar that lists open files)
181 * indent-char (Color of the character which indicates tabs if the option is
182   enabled)
183 * line-number
184 * gutter-error
185 * gutter-warning
186 * diff-added
187 * diff-modified
188 * diff-deleted
189 * cursor-line
190 * current-line-number
191 * color-column
192 * ignore
193 * scrollbar
194 * divider (Color of the divider between vertical splits)
195 * message (Color of messages in the bottom line of the screen)
196 * error-message (Color of error messages in the bottom line of the screen)
197
198 Colorschemes must be placed in the `~/.config/micro/colorschemes` directory to
199 be used.
200
201 ---
202
203 In addition to the main colorscheme groups, there are subgroups that you can
204 specify by adding `.subgroup` to the group. If you're creating your own custom
205 syntax files, you can make use of your own subgroups.
206
207 If micro can't match the subgroup, it'll default to the root group, so  it's
208 safe and recommended to use subgroups in your custom syntax files.
209
210 For example if `constant.string` is found in your colorscheme, micro will us
211 that for highlighting strings. If it's not found, it will use constant instead.
212 Micro tries to match the largest set of groups it can find in the colorscheme
213 definitions, so if, for examle `constant.bool.true` is found then micro will
214 use that. If `constant.bool.true` is not found but `constant.bool` is found
215 micro will use `constant.bool`. If not, it uses `constant`. 
216
217 Here's a list of subgroups used in micro's built-in syntax files.
218
219 * comment.bright (Some filetypes have distinctions between types of comments)
220 * constant.bool
221 * constant.bool.true
222 * constant.bool.false
223 * constant.number 
224 * constant.specialChar
225 * constant.string
226 * constant.string.url 
227 * identifier.class (Also used for functions)
228 * identifier.macro
229 * identifier.var
230 * preproc.shebang (The #! at the beginning of a file that tells the os what
231   script interpreter to use)
232 * symbol.brackets (`{}()[]` and sometimes `<>`)
233 * symbol.operator (Color operator symbols differently)
234 * symbol.tag (For html tags, among other things)
235 * type.keyword (If you want a special highlight for keywords like `private`)
236
237 In the future, plugins may also be able to use color groups for styling.
238
239
240 ## Syntax files
241
242 The syntax files are written in yaml-format and specify how to highlight
243 languages.
244
245 Micro's builtin syntax highlighting tries very hard to be sane, sensible and
246 provide ample coverage of the meaningful elements of a language. Micro has
247 syntax files built in for over 100 languages now! However, there may be 
248 situations where you find Micro's highlighting to be insufficient or not to
249 your liking. The good news is that you can create your own syntax files, and
250 place them in  `~/.config/micro/syntax` and Micro will use those instead.
251
252 ### Filetype definition
253
254 You must start the syntax file by declaring the filetype:
255
256 ```
257 filetype: go
258 ```
259
260 ### Detect definition
261
262 Then you must provide information about how to detect the filetype:
263
264 ```
265 detect:
266     filename: "\\.go$"
267 ```
268
269 Micro will match this regex against a given filename to detect the filetype.
270 You may also provide an optional `header` regex that will check the first line
271 of the file. For example:
272
273 ```
274 detect:
275     filename: "\\.ya?ml$"
276     header: "%YAML"
277 ```
278
279 ### Syntax rules
280
281 Next you must provide the syntax highlighting rules. There are two types of
282 rules: patterns and regions. A pattern is matched on a single line and usually
283 a single word as well. A region highlights between two patterns over multiple
284 lines and may have rules of its own inside the region.
285
286 Here are some example patterns in Go:
287
288 ```
289 rules:
290     - special: "\\b(break|case|continue|default|go|goto|range|return)\\b"
291     - statement: "\\b(else|for|if|switch)\\b"
292     - preproc: "\\b(package|import|const|var|type|struct|func|go|defer|iota)\\b"
293 ```
294
295 The order of patterns does matter as patterns lower in the file will overwrite
296 the ones defined above them.
297
298 And here are some example regions for Go:
299
300 ```
301 - constant.string:
302     start: "\""
303     end: "\""
304     rules:
305         - constant.specialChar: "%."
306         - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
307         - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})"
308
309 - comment:
310     start: "//"
311     end: "$"
312     rules:
313         - todo: "(TODO|XXX|FIXME):?"
314
315 - comment:
316     start: "/\\*"
317     end: "\\*/"
318     rules:
319         - todo: "(TODO|XXX|FIXME):?"
320 ```
321
322 Notice how the regions may contain rules inside of them. Any inner rules that
323 are matched are then skipped when searching for the end of the region. For
324 example, when highlighting `"foo \" bar"`, since `\"` is matched by an inner
325 rule in the region, it is skipped. Likewise for `"foo \\" bar`, since `\\` is
326 matched by an inner rule, it is skipped, and then the `"` is found and the
327 string ends at the correct place.
328
329 You may also explicitly mark skip regexes if you don't want them to be
330 highlighted. For example:
331
332 ```
333 - constant.string:
334     start: "\""
335     end: "\""
336     skip: "\\."
337     rules: []
338 ```
339
340 #### Includes
341
342 You may also include rules from other syntax files as embedded languages. For
343 example, the following is possible for html:
344
345 ```
346 - default:
347     start: "<script.*?>"
348     end: "</script.*?>"
349     rules:
350         - include: "javascript"
351
352 - default:
353     start: "<style.*?>"
354     end: "</style.*?>"
355     rules:
356         - include: "css"
357 ```
358
359 ## Syntax file headers
360
361 Syntax file headers are an optimization and it is likely you do not need to
362 worry about them.
363
364 Syntax file headers are files that contain only the filetype and the detection
365 regular expressions for a given syntax file. They have a `.hdr` suffix and are
366 used by default only for the pre-installed syntax files. Header files allow
367 micro to parse the syntax files much faster when checking the filetype of a
368 certain file. Custom syntax files may provide header files in
369 `~/.config/micro/syntax` as well but it is not necessary (only do this if you
370 have many (100+) custom syntax files and want to improve performance).