Sunday, August 26, 2018

color palette for st (suckless simple terminal) config.h

/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {

/* 8 normal colors */
[0] = "#2b2b2b", /* black   */
[1] = "#da4939", /* red     */
[2] = "#a5c261", /* green   */
[4] = "#6d9cbe", /* blue    */
[5] = "#b6b3eb", /* magenta */
[6] = "#519f50", /* cyan    */
[7] = "#e6e1dc", /* white   */

/* 8 bright colors */
[8]  = "#5a647e", /* black   */
[9]  = "#da4939", /* red     */
[10] = "#a5c261", /* green   */
[11] = "#ffc66d", /* yellow  */
[12] = "#6d9cbe", /* blue    */
[13] = "#b6b3eb", /* magenta */
[14] = "#519f50", /* cyan    */
[15] = "#f9f7f3", /* white   */

/* special colors */
[256] = "#2b2b2b", /* background */
[257] = "#e6e1dc", /* foreground */
};

/*
* Default colors (colorname index)
* foreground, background, cursor
*/
unsigned int defaultfg = 257;
unsigned int defaultbg = 256;
static unsigned int defaultcs = 257;
static unsigned int defaultrcs = 256;

/*
* Colors used, when the specific fg == defaultfg. So in reverse mode this
* will reverse too. Another logic would only make the simple feature too
* complex.
*/
static unsigned int defaultitalic = 7;
static unsigned int defaultunderline = 7;


No comments:

Post a Comment