tomorrow_night.md
1 # drac to tomorrow night 2 3 for a quick setup, set the following option: 4 ``` 5 set -g @dracula-colors " 6 # simple tomorrow night color palette 7 pink='#cc6666' 8 orange='#de935f' 9 yellow='#f0c574' 10 green='#b5bd68' 11 cyan='#8abdb6' 12 blue='#81a2be' 13 light_purple='#b294ba' 14 white='#c4c8c5' 15 dark_gray='#363a41' 16 red='#cc6666' 17 gray='#1d1f21' 18 dark_purple='#373b41' 19 " 20 ``` 21 22 Alternatively use the full tomorrow color palette and customise the flags accordingly 23 24 # Tomorrow Night Color Palette 25 ## Tomorrow 26 ``` 27 foreground='#4d4d4c' 28 background='#ffffff' 29 highlight='#d6d6d6' 30 status_line='#efefef' 31 comment='#8e908c' 32 red='#c82829' 33 orange='#f5871f' 34 yellow='#eab700' 35 green='#718c00' 36 aqua='#3e999f' 37 blue='#4271ae' 38 purple='#8959a8' 39 pane='#efefef' 40 ``` 41 ## Tomorrow Night 42 ``` 43 foreground='#c5c8c6' 44 background='#1d1f21' 45 highlight='#373b41' 46 status_line='#282a2e' 47 comment='#969896' 48 red='#cc6666' 49 orange='#de935f' 50 yellow='#f0c674' 51 green='#b5bd68' 52 aqua='#8abeb7' 53 blue='#81a2be' 54 purple='#b294bb' 55 pane='#4d5057' 56 ``` 57 ## Tomorrow Night Eighties 58 ``` 59 foreground='#4d4d4c' 60 background='#ffffff' 61 highlight='#d6d6d6' 62 status_line='#efefef' 63 comment='#8e908c' 64 red='#c82829' 65 orange='#f5871f' 66 yellow='#eab700' 67 green='#718c00' 68 aqua='#3e999f' 69 blue='#4271ae' 70 purple='#8959a8' 71 pane='#efefef' 72 ``` 73 ## Tomorrow Night Bright 74 ``` 75 foreground='#eaeaea' 76 background='#000000' 77 highlight='#424242' 78 status_line='#2a2a2a' 79 comment='#969896' 80 red='#d54e53' 81 orange='#e78c45' 82 yellow='#e7c547' 83 green='#b9ca4a' 84 aqua='#70c0b1' 85 blue='#7aa6da' 86 purple='#c397d8' 87 pane='#4d5057' 88 ``` 89 ## Tomorrow Night Blue 90 ``` 91 foreground='#ffffff' 92 background='#002451' 93 highlight='#003f8e' 94 status_line='#00346e' 95 comment='#7285b7' 96 red='#ff9da4' 97 orange='#ffc58f' 98 yellow='#ffeead' 99 green='#d1f1a9' 100 aqua='#99ffff' 101 blue='#bbdaff' 102 purple='#ebbbff' 103 pane='#4d5057' 104 ``` 105 106 >For more information about the tomorrow theme, here is the repo made by [chriskempson](https://github.com/chriskempson/tomorrow-theme/tree/master)