Skip to content

Commit

Permalink
Merge pull request #315 from joncvn/doc/colorscheme/add-tommorrow-nig…
Browse files Browse the repository at this point in the history
…ht-colorscheme

add tommorow night color scheme
  • Loading branch information
ethancedwards8 authored Jan 1, 2025
2 parents 5eb04b9 + c5a43df commit bc665f9
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 0 deletions.
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)

0 comments on commit bc665f9

Please sign in to comment.