Created
April 5, 2016 19:48
-
-
Save pmiddend/177657a67b4c029b4518d3bea5844384 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Terminal colors (16 first used in escape sequence) */ | |
| static const char *colorname[] = { | |
| "#3f3f3f", | |
| "#cc9393", | |
| "#7f9f7f", | |
| "#d0bf8f", | |
| "#6ca0a3", | |
| "#dc8cc3", | |
| "#93e0e3", | |
| "#dcdccc", | |
| "#000000", | |
| "#dca3a3", | |
| "#bfebbf", | |
| "#f0dfaf", | |
| "#8cd0d3", | |
| "#dc8cc3", | |
| "#93e0e3", | |
| "#ffffff", | |
| [255] = 0, | |
| /* more colors can be added after 255 to use with DefaultXX */ | |
| "#3f3f3f", | |
| "#dcdccc", | |
| "#aaaaaa", | |
| }; | |
| /* | |
| * Default colors (colorname index) | |
| * foreground, background, cursor, reverse cursor | |
| */ | |
| static unsigned int defaultfg = 257; | |
| static unsigned int defaultbg = 256; | |
| static unsigned int defaultcs = 258; | |
| static unsigned int defaultrcs = 256; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment