cobalt neon

This commit is contained in:
Andrew Holland 2017-04-20 14:22:19 +03:00
parent 1b74031009
commit 54ccb7a159

View file

@ -88,58 +88,60 @@ static const int alpha = 0xdd;
/* Terminal colors (16 first used in escape sequence) */ /* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = { static const char *colorname[] = {
/* solarized dark */ // cobalt neon
"#073642", /* 0: black */
"#dc322f", /* 1: red */ "#142631", // 0
"#859900", /* 2: green */ "#ff2320", // 1
"#b58900", /* 3: yellow */ "#3ba5ff", // 2
"#268bd2", /* 4: blue */ "#e9e75c", // 3
"#d33682", /* 5: magenta */ "#8ff586", // 4
"#2aa198", /* 6: cyan */ "#781aa0", // 5
"#eee8d5", /* 7: white */ "#8ff586", // 6
"#002b36", /* 8: brblack */ "#ba46b2", // 7
"#cb4b16", /* 9: brred */ "#fff688", // 8
"#586e75", /* 10: brgreen */ "#d4312e", // 9
"#657b83", /* 11: bryellow */ "#8ff586", // 10
"#839496", /* 12: brblue */ "#e9f06d", // 11
"#6c71c4", /* 13: brmagenta*/ "#3c7dd2", // 12
"#93a1a1", /* 14: brcyan */ "#8230a7", // 13
"#fdf6e3", /* 15: brwhite */ "#6cbc67", // 14
"#8ff586", // 15
[255] = 0, [255] = 0,
/* more colors can be added after 255 to use with DefaultXX */ /* more colors can be added after 255 to use with DefaultXX */
"#cccccc", "#142838", /* bg color */
"#555555", "#8ff586", // 6
"black" "#c4206f" /* cs color */
}; };
/* Terminal colors for alternate (light) palette */ /* Terminal colors for alternate (light) palette */
static const char *altcolorname[] = { static const char *altcolorname[] = {
/* solarized light */ // IC_Green
"#eee8d5", /* 0: black */
"#dc322f", /* 1: red */ "#1f1f1f", // 0
"#859900", /* 2: green */ "#fb002a", // 1
"#b58900", /* 3: yellow */ "#339c24", // 2
"#268bd2", /* 4: blue */ "#659b25", // 3
"#d33682", /* 5: magenta */ "#149b45", // 4
"#2aa198", /* 6: cyan */ "#53b82c", // 5
"#073642", /* 7: white */ "#2cb868", // 6
"#fdf6e3", /* 8: brblack */ "#e0ffef", // 7
"#cb4b16", /* 9: brred */ "#032710", // 8
"#93a1a1", /* 10: brgreen */ "#a7ff3f", // 9
"#839496", /* 11: bryellow */ "#9fff6d", // 10
"#657b83", /* 12: brblue */ "#d2ff6d", // 11
"#6c71c4", /* 13: brmagenta*/ "#72ffb5", // 12
"#586e75", /* 14: brcyan */ "#50ff3e", // 13
"#002b36", /* 15: brwhite */ "#22ff71", // 14
"#daefd0", // 15
[255] = 0, [255] = 0,
/* more colors can be added after 255 to use with DefaultXX */ /* more colors can be added after 255 to use with DefaultXX */
"#cccccc", "#3a3d3f", /* bg color */
"#555555", "#d9efd3", /* fg color */
"black" "#42ff58" /* cs color */
}; };
@ -147,9 +149,9 @@ static const char *altcolorname[] = {
* Default colors (colorname index) * Default colors (colorname index)
* foreground, background, cursor, reverse cursor * foreground, background, cursor, reverse cursor
*/ */
static unsigned int defaultfg = 12; static unsigned int defaultbg = 256;
static unsigned int defaultbg = 8; static unsigned int defaultfg = 257;
static unsigned int defaultcs = 14; static unsigned int defaultcs = 258;
static unsigned int defaultrcs = 15; static unsigned int defaultrcs = 15;
/* /*