diff --git a/docs/color_theming/README.md b/docs/color_theming/README.md index 5a3af03..1b3fe04 100644 --- a/docs/color_theming/README.md +++ b/docs/color_theming/README.md @@ -62,3 +62,4 @@ set -g @dracula-colors " white='#f8f8f2' gray='#44475a' dark_gray='#282a36' ligh as part of this directory there are some plug and play themes with explanations on how to use them: - [catppuccin](/docs/color_theming/catppuccin.md) - [gruvbox](/docs/color_theming/gruvbox.md) +- [tomorrow night](/docs/color_theming/tomorrow_night.md) diff --git a/docs/color_theming/tomorrow_night.md b/docs/color_theming/tomorrow_night.md new file mode 100644 index 0000000..e09eea2 --- /dev/null +++ b/docs/color_theming/tomorrow_night.md @@ -0,0 +1,106 @@ +# drac to tomorrow night + +for a quick setup, set the following option: +``` +set -g @dracula-colors " +# simple tomorrow night color palette +pink='#cc6666' +orange='#de935f' +yellow='#f0c574' +green='#b5bd68' +cyan='#8abdb6' +blue='#81a2be' +light_purple='#b294ba' +white='#c4c8c5' +dark_gray='#363a41' +red='#cc6666' +gray='#1d1f21' +dark_purple='#373b41' +" +``` + +Alternatively use the full tomorrow color palette and customise the flags accordingly + +# Tomorrow Night Color Palette +## Tomorrow +``` +foreground='#4d4d4c' +background='#ffffff' +highlight='#d6d6d6' +status_line='#efefef' +comment='#8e908c' +red='#c82829' +orange='#f5871f' +yellow='#eab700' +green='#718c00' +aqua='#3e999f' +blue='#4271ae' +purple='#8959a8' +pane='#efefef' +``` +## Tomorrow Night +``` +foreground='#c5c8c6' +background='#1d1f21' +highlight='#373b41' +status_line='#282a2e' +comment='#969896' +red='#cc6666' +orange='#de935f' +yellow='#f0c674' +green='#b5bd68' +aqua='#8abeb7' +blue='#81a2be' +purple='#b294bb' +pane='#4d5057' +``` +## Tomorrow Night Eighties +``` +foreground='#4d4d4c' +background='#ffffff' +highlight='#d6d6d6' +status_line='#efefef' +comment='#8e908c' +red='#c82829' +orange='#f5871f' +yellow='#eab700' +green='#718c00' +aqua='#3e999f' +blue='#4271ae' +purple='#8959a8' +pane='#efefef' +``` +## Tomorrow Night Bright +``` +foreground='#eaeaea' +background='#000000' +highlight='#424242' +status_line='#2a2a2a' +comment='#969896' +red='#d54e53' +orange='#e78c45' +yellow='#e7c547' +green='#b9ca4a' +aqua='#70c0b1' +blue='#7aa6da' +purple='#c397d8' +pane='#4d5057' +``` +## Tomorrow Night Blue +``` +foreground='#ffffff' +background='#002451' +highlight='#003f8e' +status_line='#00346e' +comment='#7285b7' +red='#ff9da4' +orange='#ffc58f' +yellow='#ffeead' +green='#d1f1a9' +aqua='#99ffff' +blue='#bbdaff' +purple='#ebbbff' +pane='#4d5057' +``` + +>For more information about the tomorrow theme, here is the repo made by [chriskempson](https://github.com/chriskempson/tomorrow-theme/tree/master)