cyberpunk-neon.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
       ---
       cyberpunk-neon.h (702B)
       ---
            1 /* https://st.suckless.org/patches/cyberpunk-neon */
            2 
            3 /* Terminal colors (16 first used in escape sequence) */
            4 static const char *colorname[] = {
            5         /* 8 normal colors */
            6         [0] = "#123e7c",
            7         [1] = "#ff0000",
            8         [2] = "#d300c4",
            9         [3] = "#f57800",
           10         [4] = "#123e7c",
           11         [5] = "#711c91",
           12         [6] = "#0abdc6",
           13         [7] = "#d7d7d5",
           14 
           15         /* 8 bright colors */
           16         [8] = "#1c61c2",
           17         [9] = "#ff0000",
           18         [10] = "#d300c4",
           19         [11] = "#f57800",
           20         [12] = "#00ff00",
           21         [13] = "#711c91",
           22         [14] = "#0abdc6",
           23         [15] = "#d7d7d5",
           24 
           25         [255] = 0,
           26 
           27           /* more colors can be added after 255 to use with DefaultXX */
           28           "#ffffff", /* 256 -> cursor */
           29           "#555555", /* 257 -> rev cursor*/
           30           "#0abdc6", /* 258 -> fg */
           31           "#000b1e", /* 259 -> bg */
           32 };
           33