]> git.lizzy.rs Git - micro.git/blob - runtime/help/colors.md
Merge
[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 * 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 * cursor-line
187 * current-line-number
188 * color-column
189 * ignore
190 * divider (Color of the divider between vertical splits)
191
192 Colorschemes must be placed in the `~/.config/micro/colorschemes` directory to
193 be used.
194
195 ---
196
197 In addition to the main colorscheme groups, there are subgroups that you can
198 specify by adding `.subgroup` to the group. If you're creating your own custom
199 syntax files, you can make use of your own subgroups.
200
201 If micro can't match the subgroup, it'll default to the root group, so  it's
202 safe and recommended to use subgroups in your custom syntax files.
203
204 For example if `constant.string` is found in your colorscheme, micro will us
205 that for highlighting strings. If it's not found, it will use constant instead.
206 Micro tries to match the largest set of groups it can find in the colorscheme
207 definitions, so if, for examle `constant.bool.true` is found then micro will
208 use that. If `constant.bool.true` is not found but `constant.bool` is found
209 micro will use `constant.bool`. If not, it uses `constant`. 
210
211 Here's a list of subgroups used in micro's built-in syntax files.
212
213 * comment.bright (Some filetypes have distinctions between types of comments)
214 * constant.bool
215 * constant.bool.true
216 * constant.bool.false
217 * constant.number 
218 * constant.specialChar
219 * constant.string
220 * constant.string.url 
221 * identifier.class (Also used for functions)
222 * identifier.macro
223 * identifier.var
224 * preproc.shebang (The #! at the beginning of a file that tells the os what
225   script interpreter to use)
226 * symbol.brackets (`{}()[]` and sometimes `<>`)
227 * symbol.operator (Color operator symbols differently)
228 * symbol.tag (For html tags, among other things)
229 * type.keyword (If you want a special highlight for keywords like `private`)
230
231 In the future, plugins may also be able to use color groups for styling.
232
233
234 ## Syntax files
235
236 The syntax files are written in yaml-format and specify how to highlight
237 languages.
238
239 Micro's builtin syntax highlighting tries very hard to be sane, sensible and
240 provide ample coverage of the meaningful elements of a language. Micro has
241 syntax files built in for over 100 languages now! However, there may be 
242 situations where you find Micro's highlighting to be insufficient or not to
243 your liking. The good news is that you can create your own syntax files, and
244 place them in  `~/.config/micro/syntax` and Micro will use those instead.
245
246 ### Filetype definition
247
248 You must start the syntax file by declaring the filetype:
249
250 ```
251 filetype: go
252 ```
253
254 ### Detect definition
255
256 Then you must provide information about how to detect the filetype:
257
258 ```
259 detect:
260     filename: "\\.go$"
261 ```
262
263 Micro will match this regex against a given filename to detect the filetype.
264 You may also provide an optional `header` regex that will check the first line
265 of the file. For example:
266
267 ```
268 detect:
269     filename: "\\.ya?ml$"
270     header: "%YAML"
271 ```
272
273 ### Syntax rules
274
275 Next you must provide the syntax highlighting rules. There are two types of
276 rules: patterns and regions. A pattern is matched on a single line and usually
277 a single word as well. A region highlights between two patterns over multiple
278 lines and may have rules of its own inside the region.
279
280 Here are some example patterns in Go:
281
282 ```
283 rules:
284     - special: "\\b(break|case|continue|default|go|goto|range|return)\\b"
285     - statement: "\\b(else|for|if|switch)\\b"
286     - preproc: "\\b(package|import|const|var|type|struct|func|go|defer|iota)\\b"
287 ```
288
289 The order of patterns does matter as patterns lower in the file will overwrite
290 the ones defined above them.
291
292 And here are some example regions for Go:
293
294 ```
295 - constant.string:
296     start: "\""
297     end: "\""
298     rules:
299         - constant.specialChar: "%."
300         - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
301         - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})"
302
303 - comment:
304     start: "//"
305     end: "$"
306     rules:
307         - todo: "(TODO|XXX|FIXME):?"
308
309 - comment:
310     start: "/\\*"
311     end: "\\*/"
312     rules:
313         - todo: "(TODO|XXX|FIXME):?"
314 ```
315
316 Notice how the regions may contain rules inside of them. Any inner rules that
317 are matched are then skipped when searching for the end of the region. For
318 example, when highlighting `"foo \" bar"`, since `\"` is matched by an inner
319 rule in the region, it is skipped. Likewise for `"foo \\" bar`, since `\\` is
320 matched by an inner rule, it is skipped, and then the `"` is found and the
321 string ends at the correct place.
322
323 You may also explicitly mark skip regexes if you don't want them to be
324 highlighted. For example:
325
326 ```
327 - constant.string:
328     start: "\""
329     end: "\""
330     skip: "\\."
331     rules: []
332 ```
333
334 #### Includes
335
336 You may also include rules from other syntax files as embedded languages. For
337 example, the following is possible for html:
338
339 ```
340 - default:
341     start: "<script.*?>"
342     end: "</script.*?>"
343     rules:
344         - include: "javascript"
345
346 - default:
347     start: "<style.*?>"
348     end: "</style.*?>"
349     rules:
350         - include: "css"
351 ```
352
353 ## Syntax file headers
354
355 Syntax file headers are an optimization and it is likely you do not need to
356 worry about them.
357
358 Syntax file headers are files that contain only the filetype and the detection
359 regular expressions for a given syntax file. They have a `.hdr` suffix and are
360 used by default only for the pre-installed syntax files. Header files allow
361 micro to parse the syntax files much faster when checking the filetype of a
362 certain file. Custom syntax files may provide header files in
363 `~/.config/micro/syntax` as well but it is not necessary (only do this if you
364 have many (100+) custom syntax files and want to improve performance).