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