From 14eb2a057c28016f8a6b2fbab1e3b36b1ef31b24 Mon Sep 17 00:00:00 2001 From: Ryuma Taguchi Date: Tue, 26 Mar 2024 09:26:04 +0900 Subject: [PATCH] alacritty: add base16-gruvbox-dark-hard colorscheme and use it --- .config/alacritty/alacritty.toml | 2 +- .../colors/base16-gruvbox-dark-hard.toml | 32 +++++++++++++++++++ .../colors/base16-tomorrow-night.toml | 2 +- 3 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 .config/alacritty/colors/base16-gruvbox-dark-hard.toml diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index ba1d3b5..93e5fb6 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -1,5 +1,5 @@ import = [ - "~/.config/alacritty/colors/base16-tomorrow-night.toml", + "~/.config/alacritty/colors/base16-gruvbox-dark-hard.toml", ] [font] diff --git a/.config/alacritty/colors/base16-gruvbox-dark-hard.toml b/.config/alacritty/colors/base16-gruvbox-dark-hard.toml new file mode 100644 index 0000000..40cd429 --- /dev/null +++ b/.config/alacritty/colors/base16-gruvbox-dark-hard.toml @@ -0,0 +1,32 @@ +# Base16 Gruvbox dark, hard contrast + +[colors] +draw_bold_text_with_bright_colors = false + +[colors.primary] +background = '0x1d2021' +foreground = '0xd5c4a1' + +[colors.cursor] +text = '0x1d2021' +cursor = '0xd5c4a1' + +[colors.normal] +black = '0x1d2021' +red = '0xfb4934' +green = '0xb8bb26' +yellow = '0xfabd2f' +blue = '0x83a598' +magenta = '0xd3869b' +cyan = '0x8ec07c' +white = '0xd5c4a1' + +[colors.bright] +black = '0x665c54' +red = '0xfe8019' +green = '0x3c3836' +yellow = '0x504945' +blue = '0xbdae93' +magenta = '0xebdbb2' +cyan = '0xd65d0e' +white = '0xfbf1c7' diff --git a/.config/alacritty/colors/base16-tomorrow-night.toml b/.config/alacritty/colors/base16-tomorrow-night.toml index 63e4dbf..3cf13a8 100644 --- a/.config/alacritty/colors/base16-tomorrow-night.toml +++ b/.config/alacritty/colors/base16-tomorrow-night.toml @@ -1,4 +1,4 @@ -# Snippet from https://github.com/aarowill/base16-alacritty/blob/c9e824811eed70d7cdb1b31614b81c2f82bf16f8/colors/base16-tomorrow-night.toml +# Base16 Tomorrow Night scheme [colors] draw_bold_text_with_bright_colors = false