Skip to content

Commit

Permalink
alacritty: add base16-gruvbox-dark-hard colorscheme and use it
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuma017 committed Mar 26, 2024
1 parent e44bb31 commit 14eb2a0
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .config/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import = [
"~/.config/alacritty/colors/base16-tomorrow-night.toml",
"~/.config/alacritty/colors/base16-gruvbox-dark-hard.toml",
]

[font]
Expand Down
32 changes: 32 additions & 0 deletions .config/alacritty/colors/base16-gruvbox-dark-hard.toml
Original file line number Diff line number Diff line change
@@ -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'
2 changes: 1 addition & 1 deletion .config/alacritty/colors/base16-tomorrow-night.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 14eb2a0

Please sign in to comment.