citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

tomorrow-night (1124B)


      1 #define t_background        #1D1F21
      2 #define t_current_line      #393939
      3 #define t_selection       #515151
      4 #define t_foreground        #cccccc
      5 #define t_comment       #999999
      6 #define t_red         #f2777a
      7 #define t_orange        #f99157
      8 #define t_yellow          #ffcc66
      9 #define t_green           #99cc99
     10 #define t_aqua            #66cccc
     11 #define t_blue            #6699cc
     12 #define t_purple          #cc99cc
     13 
     14 
     15 *.foreground:   t_foreground
     16 *.background:   t_background
     17 *.cursorColor:  #aeafad
     18 
     19 ! Black / Grey
     20 *.color0:       #000000
     21 *.color8:       #666666
     22 
     23 ! Red / Bright Red
     24 *.color1:       t_red
     25 *.color9:       #FF3334
     26 
     27 ! Green + Bright Green
     28 *.color2:       t_green
     29 *.color10:      #9ec400
     30 
     31 ! Yellow (Orange) + Bright Yellow (Yellow)
     32 *.color3:       t_orange
     33 *.color11:      t_yellow
     34 
     35 ! Blue + Bright Blue
     36 *.color4:       t_blue
     37 *.color12:      t_blue
     38 
     39 ! Magenta (Purple) + Bright Magenta
     40 *.color5:       t_purple
     41 *.color13:      #b777e0
     42 
     43 ! Cyan (Aqua) + Bright Cyan
     44 *.color6:       t_aqua
     45 *.color14:      #54ced6
     46 
     47 ! Light Grey (Selection) + White (Current Line)
     48 *.color7:       t_selection
     49 *.color15:      t_current_line