dracula.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
       ---
       dracula.h (919B)
       ---
            1 /* https://st.suckless.org/patches/dracula */
            2 
            3 /* Terminal colors (16 first used in escape sequence) */
            4 static const char *colorname[] = {
            5         /* 8 normal colors */
            6         [0] = "#000000", /* black   */
            7         [1] = "#ff5555", /* red     */
            8         [2] = "#50fa7b", /* green   */
            9         [3] = "#f1fa8c", /* yellow  */
           10         [4] = "#bd93f9", /* blue    */
           11         [5] = "#ff79c6", /* magenta */
           12         [6] = "#8be9fd", /* cyan    */
           13         [7] = "#bbbbbb", /* white   */
           14 
           15         /* 8 bright colors */
           16         [8]  = "#44475a", /* black   */
           17         [9]  = "#ff5555", /* red     */
           18         [10] = "#50fa7b", /* green   */
           19         [11] = "#f1fa8c", /* yellow  */
           20         [12] = "#bd93f9", /* blue    */
           21         [13] = "#ff79c6", /* magenta */
           22         [14] = "#8be9fd", /* cyan    */
           23         [15] = "#ffffff", /* white   */
           24 
           25         [255] = 0,
           26 
           27           /* more colors can be added after 255 to use with DefaultXX */
           28           "#f8f8f2", /* 256 -> cursor */
           29           "#f8f8f2", /* 257 -> rev cursor*/
           30           "#f8f8f2", /* 258 -> fg */
           31         "#282a36", /* 259 -> bg */
           32 };
           33