From 244a168d43ab26c5aaa713e2344e48743fce8717 Mon Sep 17 00:00:00 2001 From: cjonathan Date: Tue, 19 Nov 2024 21:13:20 +0100 Subject: [PATCH 1/2] add tommorow night color scheme --- docs/color_theming/README.md | 1 + docs/color_theming/tomorrow_night.md | 104 +++++++++++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 docs/color_theming/tomorrow_night.md diff --git a/docs/color_theming/README.md b/docs/color_theming/README.md index 5a3af03c..1b3fe04b 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 00000000..6a802526 --- /dev/null +++ b/docs/color_theming/tomorrow_night.md @@ -0,0 +1,104 @@ +# 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 gruvbox 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' +``` From c5a43df142f566e2a7abee27b4f30383ebde00c4 Mon Sep 17 00:00:00 2001 From: cjonathan Date: Wed, 20 Nov 2024 08:47:46 +0100 Subject: [PATCH 2/2] update tomorrow_night.md --- docs/color_theming/tomorrow_night.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/color_theming/tomorrow_night.md b/docs/color_theming/tomorrow_night.md index 6a802526..e09eea2d 100644 --- a/docs/color_theming/tomorrow_night.md +++ b/docs/color_theming/tomorrow_night.md @@ -19,7 +19,7 @@ dark_purple='#373b41' " ``` -Alternatively use the full gruvbox color palette and customise the flags accordingly +Alternatively use the full tomorrow color palette and customise the flags accordingly # Tomorrow Night Color Palette ## Tomorrow @@ -102,3 +102,5 @@ 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)