aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal
diff options
context:
space:
mode:
authorAlexey Chernyshov <eiden127@gmail.com>2020-05-17 01:27:31 +0300
committerGitHub <noreply@github.com>2020-05-16 22:27:31 +0000
commit9a0eac0a14e631485c9e33e7499d84549ba510fc (patch)
treeb62ff41eadd721b7ccc38ab5da62c9c4bff297a4 /alacritty_terminal
parent7987002dcf1bdcf87a67f22758b3bb3eafe13f93 (diff)
downloadalacritty-9a0eac0a14e631485c9e33e7499d84549ba510fc.tar.gz
alacritty-9a0eac0a14e631485c9e33e7499d84549ba510fc.zip
Change default color scheme to 'Tomorrow Night'
Fixes #3404.
Diffstat (limited to 'alacritty_terminal')
-rw-r--r--alacritty_terminal/src/config/colors.rs30
1 files changed, 15 insertions, 15 deletions
diff --git a/alacritty_terminal/src/config/colors.rs b/alacritty_terminal/src/config/colors.rs
index bae00ee1..ccea9536 100644
--- a/alacritty_terminal/src/config/colors.rs
+++ b/alacritty_terminal/src/config/colors.rs
@@ -117,11 +117,11 @@ impl Default for PrimaryColors {
}
fn default_background() -> Rgb {
- Rgb { r: 0, g: 0, b: 0 }
+ Rgb { r: 0x1d, g: 0x1f, b: 0x21 }
}
fn default_foreground() -> Rgb {
- Rgb { r: 0xea, g: 0xea, b: 0xea }
+ Rgb { r: 0xc5, g: 0xc8, b: 0xc6 }
}
/// The 8-colors sections of config.
@@ -151,14 +151,14 @@ struct NormalColors(AnsiColors);
impl Default for NormalColors {
fn default() -> Self {
NormalColors(AnsiColors {
- black: Rgb { r: 0x00, g: 0x00, b: 0x00 },
- red: Rgb { r: 0xd5, g: 0x4e, b: 0x53 },
- green: Rgb { r: 0xb9, g: 0xca, b: 0x4a },
- yellow: Rgb { r: 0xe6, g: 0xc5, b: 0x47 },
- blue: Rgb { r: 0x7a, g: 0xa6, b: 0xda },
- magenta: Rgb { r: 0xc3, g: 0x97, b: 0xd8 },
- cyan: Rgb { r: 0x70, g: 0xc0, b: 0xba },
- white: Rgb { r: 0xea, g: 0xea, b: 0xea },
+ black: Rgb { r: 0x1d, g: 0x1f, b: 0x21 },
+ red: Rgb { r: 0xcc, g: 0x66, b: 0x66 },
+ green: Rgb { r: 0xb5, g: 0xbd, b: 0x68 },
+ yellow: Rgb { r: 0xf0, g: 0xc6, b: 0x74 },
+ blue: Rgb { r: 0x81, g: 0xa2, b: 0xbe },
+ magenta: Rgb { r: 0xb2, g: 0x94, b: 0xbb },
+ cyan: Rgb { r: 0x8a, g: 0xbe, b: 0xb7 },
+ white: Rgb { r: 0xc5, g: 0xc8, b: 0xc6 },
})
}
}
@@ -170,13 +170,13 @@ impl Default for BrightColors {
fn default() -> Self {
BrightColors(AnsiColors {
black: Rgb { r: 0x66, g: 0x66, b: 0x66 },
- red: Rgb { r: 0xff, g: 0x33, b: 0x34 },
- green: Rgb { r: 0x9e, g: 0xc4, b: 0x00 },
+ red: Rgb { r: 0xd5, g: 0x4e, b: 0x53 },
+ green: Rgb { r: 0xb9, g: 0xca, b: 0x4a },
yellow: Rgb { r: 0xe7, g: 0xc5, b: 0x47 },
blue: Rgb { r: 0x7a, g: 0xa6, b: 0xda },
- magenta: Rgb { r: 0xb7, g: 0x7e, b: 0xe0 },
- cyan: Rgb { r: 0x54, g: 0xce, b: 0xd6 },
- white: Rgb { r: 0xff, g: 0xff, b: 0xff },
+ magenta: Rgb { r: 0xc3, g: 0x97, b: 0xd8 },
+ cyan: Rgb { r: 0x70, g: 0xc0, b: 0xb1 },
+ white: Rgb { r: 0xea, g: 0xea, b: 0xea },
})
}
}