diff options
author | Alexey Chernyshov <eiden127@gmail.com> | 2020-05-17 01:27:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-16 22:27:31 +0000 |
commit | 9a0eac0a14e631485c9e33e7499d84549ba510fc (patch) | |
tree | b62ff41eadd721b7ccc38ab5da62c9c4bff297a4 /alacritty.yml | |
parent | 7987002dcf1bdcf87a67f22758b3bb3eafe13f93 (diff) | |
download | alacritty-9a0eac0a14e631485c9e33e7499d84549ba510fc.tar.gz alacritty-9a0eac0a14e631485c9e33e7499d84549ba510fc.zip |
Change default color scheme to 'Tomorrow Night'
Fixes #3404.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/alacritty.yml b/alacritty.yml index edceb402..bf2b4048 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -169,20 +169,20 @@ # If `true`, bold text is drawn using the bright color variants. #draw_bold_text_with_bright_colors: false -# Colors (Tomorrow Night Bright) +# Colors (Tomorrow Night) #colors: # Default colors #primary: - # background: '#000000' - # foreground: '#eaeaea' + # background: '#1d1f21' + # foreground: '#c5c8c6' # Bright and dim foreground colors # # The dimmed foreground color is calculated automatically if it is not present. # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors` # is `false`, the normal foreground color will be used. - #dim_foreground: '#9a9a9a' - #bright_foreground: '#ffffff' + #dim_foreground: '#828482' + #bright_foreground: '#eaeaea' # Cursor colors # @@ -211,39 +211,39 @@ # Normal colors #normal: - # black: '#000000' - # red: '#d54e53' - # green: '#b9ca4a' - # yellow: '#e6c547' - # blue: '#7aa6da' - # magenta: '#c397d8' - # cyan: '#70c0ba' - # white: '#eaeaea' + # black: '#1d1f21' + # red: '#cc6666' + # green: '#b5bd68' + # yellow: '#f0c674' + # blue: '#81a2be' + # magenta: '#b294bb' + # cyan: '#8abeb7' + # white: '#c5c8c6' # Bright colors #bright: # black: '#666666' - # red: '#ff3334' - # green: '#9ec400' + # red: '#d54e53' + # green: '#b9ca4a' # yellow: '#e7c547' # blue: '#7aa6da' - # magenta: '#b77ee0' - # cyan: '#54ced6' - # white: '#ffffff' + # magenta: '#c397d8' + # cyan: '#70c0b1' + # white: '#eaeaea' # Dim colors # # If the dim colors are not set, they will be calculated automatically based # on the `normal` colors. #dim: - # black: '#000000' - # red: '#8c3336' - # green: '#7a8530' - # yellow: '#97822e' - # blue: '#506d8f' - # magenta: '#80638e' - # cyan: '#497e7a' - # white: '#9a9a9a' + # black: '#131415' + # red: '#864343' + # green: '#777c44' + # yellow: '#9e824c' + # blue: '#556a7d' + # magenta: '#75617b' + # cyan: '#5b7d78' + # white: '#828482' # Indexed Colors # |