gruvbox-dark.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
       ---
       gruvbox-dark.h (959B)
       ---
            1 /* https://st.suckless.org/patches/gruvbox */
            2 
            3 /* Terminal colors (16 first used in escape sequence) */
            4 static const char *colorname[] = {
            5         /* 8 normal colors */
            6         [0] = "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */
            7         [1] = "#cc241d", /* red     */
            8         [2] = "#98971a", /* green   */
            9         [3] = "#d79921", /* yellow  */
           10         [4] = "#458588", /* blue    */
           11         [5] = "#b16286", /* magenta */
           12         [6] = "#689d6a", /* cyan    */
           13         [7] = "#a89984", /* white   */
           14 
           15         /* 8 bright colors */
           16         [8]  = "#928374", /* black   */
           17         [9]  = "#fb4934", /* red     */
           18         [10] = "#b8bb26", /* green   */
           19         [11] = "#fabd2f", /* yellow  */
           20         [12] = "#83a598", /* blue    */
           21         [13] = "#d3869b", /* magenta */
           22         [14] = "#8ec07c", /* cyan    */
           23         [15] = "#ebdbb2", /* white   */
           24 
           25         [255] = 0,
           26 
           27           /* more colors can be added after 255 to use with DefaultXX */
           28           "#ebdbb2", /* 256 -> cursor */
           29           "#282828", /* 257 -> rev cursor*/
           30           "#ebdbb2", /* 258 -> fg */
           31         "#282828", /* 259 -> bg */
           32 };
           33