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