]> git.lizzy.rs Git - micro.git/blobdiff - runtime/help/colors.md
a few miscellaneous fixes and improvements (#1105)
[micro.git] / runtime / help / colors.md
index aa1e5b3d0225df635c83d71818e2e0fb7a1f377b..ac70509cdbd9aefe253b1c3b243664a98eda58ea 100644 (file)
@@ -8,21 +8,14 @@ This help page aims to cover two aspects of micro's syntax highlighting engine:
 
 ## Colorschemes
 
-Micro comes with a number of colorschemes by default. Here is the list:
-
-### 16 color
-
-These may vary widely based on the 16 colors selected for your terminal.
+To change your colorscheme, press Ctrl-E in micro to bring up the command
+prompt, and type:
+```
+set colorscheme solarized
+```
+(or whichever colorscheme you choose).
 
-* `simple`: this is the simplest colorscheme. It uses 16 colors which are set by
-  your terminal
-* `solarized`: this is the solarized colorscheme. You should have the solarized
-  color palette in your terminal to use it.
-* `cmc-16`: A very nice 16-color theme. Written by contributor CaptainMcClellan
-  (Collin Warren.) Licensed under the same license as the rest of the themes.
-* `cmc-paper`: Basically cmc-16, but on a white background. (Actually light grey
-  on most ANSI (16-color) terminals)
-* `geany`: Colorscheme based on geany's default highlighting.
+Micro comes with a number of colorschemes by default. Here is the list:
 
 ### 256 color
 
@@ -34,10 +27,24 @@ themes the most.
   256 color approximation looks very good as well. It's also the default
   colorscheme.
 * `zenburn`
+* `gruvbox`
 * `darcula`
 * `twilight`
+* `railscast`
 * `bubblegum`: a light colorscheme
 
+### 16 color
+
+These may vary widely based on the 16 colors selected for your terminal.
+
+* `simple`: this is the simplest colorscheme. It uses 16 colors which are set by
+  your terminal
+* `solarized`: You should have the solarized color palette in your terminal to use this colorscheme properly.
+* `cmc-16`
+* `cmc-paper`: cmc-16, but on a white background. (Actually light grey
+  on most ANSI (16-color) terminals)
+* `geany`: Colorscheme based on geany's default highlighting.
+
 ### True color
 
 These require terminals that support true color and require `MICRO_TRUECOLOR=1` (this is an environment variable).
@@ -49,18 +56,20 @@ These require terminals that support true color and require `MICRO_TRUECOLOR=1`
 * `gruvbox-tc`: The true color version of the gruvbox colorscheme
 * `github-tc`: The true color version of the Github colorscheme
 
-To enable one of these colorschemes just press CtrlE in micro and type
-`set colorscheme solarized`. (or whichever one you choose). You can also use
-`set colorscheme monochrome` if you'd prefer to have just the terminal's default
+### Monochrome
+
+You can also use `monochrome` if you'd prefer to have just the terminal's default
 foreground and background colors. Note: This provides no syntax highlighting!
 
+### Other
+
 See `help gimmickcolors` for a list of some true colour themes that are more 
 just for fun than for serious use. (Though feel free if you want!)
 
 
 ## Creating a Colorscheme
 
-Micro's colorschemes are also extremely simple to create. The default ones ca
+Micro's colorschemes are also extremely simple to create. The default ones can
 be found
 [here](https://github.com/zyedidia/micro/tree/master/runtime/colorschemes).