catppuccin.h - st - personal variant of st
 (HTM) git clone https://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       catppuccin.h (655B)
       ---
            1 /* Terminal colors (16 first used in escape sequence) */
            2 static const char *colorname[] = {
            3         /* 8 normal colors */
            4         "#45475A",
            5         "#F38BA8",
            6         "#A6E3A1",
            7         "#F9E2AF",
            8         "#89B4FA",
            9         "#F5C2E7",
           10         "#94E2D5",
           11         "#BAC2DE",
           12 
           13         /* 8 bright colors */
           14         "#585B70",
           15         "#F38BA8",
           16         "#A6E3A1",
           17         "#F9E2AF",
           18         "#89B4FA",
           19         "#F5C2E7",
           20         "#94E2D5",
           21         "#A6ADC8",
           22 
           23 [256] = "#CDD6F4", /* default foreground colour */
           24 [257] = "#1E1E2E", /* default background colour */
           25 [258] = "#F5E0DC", /*575268*/
           26 
           27 };
           28 
           29 
           30 /*
           31  * foreground, background, cursor, reverse cursor
           32  */
           33 unsigned int defaultfg = 256;
           34 unsigned int defaultbg = 257;
           35 unsigned int defaultcs = 258;
           36 static unsigned int defaultrcs = 258;