Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tommorow night color scheme #315

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/color_theming/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
106 changes: 106 additions & 0 deletions docs/color_theming/tomorrow_night.md
Original file line number Diff line number Diff line change
@@ -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)