-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #315 from joncvn/doc/colorscheme/add-tommorrow-nig…
…ht-colorscheme add tommorow night color scheme
- Loading branch information
Showing
2 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |