tokyo-night.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
       ---
       tokyo-night.h (574B)
       ---
            1 /* Terminal colors (16 first used in escape sequence) */
            2 static const char *colorname[] = {
            3         /* 8 normal colors */
            4           "#15161E",
            5           "#f7768e",
            6           "#9ece6a",
            7           "#e0af68",
            8           "#7aa2f7",
            9           "#bb9af7",
           10           "#7dcfff",
           11         "#a9b1d6",
           12 
           13         /* 8 bright colors */
           14 
           15           "#414868",
           16           "#f7768e",
           17           "#9ece6a",
           18           "#e0af68",
           19           "#7aa2f7",
           20           "#bb9af7",
           21           "#7dcfff",
           22           "#c0caf5",
           23 
           24           [255] = 0,
           25 
           26           /* more colors can be added after 255 to use with DefaultXX */
           27           "#7dcfff", /* 256 -> cursor */
           28           "#a9b1d6", /* 257 -> rev cursor*/
           29         "#c0caf5", /* 258 -> fg */
           30         "#15161E", /* 259 -> bg */
           31 };