onedark.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
       ---
       onedark.h (574B)
       ---
            1 /* Terminal colors (16 first used in escape sequence) */
            2 static const char *colorname[] = {
            3         /* 8 normal colors */
            4           "#1e2127",
            5           "#e06c75",
            6           "#98c379",
            7           "#d19a66",
            8           "#61afef",
            9           "#c678dd",
           10           "#56b6c2",
           11         "#828791",
           12 
           13         /* 8 bright colors */
           14           "#5c6370",
           15           "#e06c75",
           16           "#98c379",
           17           "#d19a66",
           18           "#61afef",
           19           "#c678dd",
           20           "#56b6c2",
           21           "#e6efff",
           22 
           23           [255] = 0,
           24 
           25           /* more colors can be added after 255 to use with DefaultXX */
           26           "#add8e6", /* 256 -> cursor */
           27           "#555555", /* 257 -> rev cursor*/
           28         "#ffffff", /* 258 -> fg */
           29         "#1e2127", /* 259 -> bg */
           30 };
           31