vip

VI Plus
git clone https://codeberg.org/night0721/vip
Log | Files | Refs | README | LICENSE

config.h (890B)


      1 #ifndef CONFIG_H_
      2 #define CONFIG_H_
      3 
      4 #include "syntax.h"
      5 
      6 #define TAB_SIZE 4
      7 
      8 /* THEME */
      9 /* 38 and 48 is reversed as bar's color is reversed */
     10 
     11 #define SURFACE_1_BG "\x1b[38;2;049;050;068m"
     12 #define OVERLAY_0_BG "\x1b[38;2;108;112;134m"
     13 #define BLACK_FG     "\x1b[48;2;000;000;000m"
     14 #define BLACK_BG     "\x1b[38;2;000;000;000m"
     15 #define WHITE_FG     "\x1b[48;2;205;214;244m"
     16 #define WHITE_BG     "\x1b[38;2;205;214;244m"
     17 #define BLUE_FG	     "\x1b[48;2;137;180;250m"
     18 #define BLUE_BG      "\x1b[38;2;137;180;250m"
     19 #define GREEN_FG     "\x1b[48;2;166;227;161m"
     20 #define GREEN_BG     "\x1b[38;2;166;227;161m"
     21 #define PEACH_FG     "\x1b[48;2;250;179;135m"
     22 #define PEACH_BG     "\x1b[38;2;250;179;135m"
     23 #define SKY_FG       "\x1b[48;2;137;220;235m"
     24 #define SKY_BG       "\x1b[38;2;137;220;235m"
     25 #define MAUVE_BG     "\x1b[38;2;203;166;247m"
     26 #define YELLOW_BG    "\x1b[38;2;249;226;175m"
     27 
     28 #endif