diff options
author | Tyler Davis <tyler@gluecode.net> | 2025-03-15 19:37:17 -0700 |
---|---|---|
committer | Tyler Davis <tyler@gluecode.net> | 2025-03-17 01:30:58 +0000 |
commit | c613262835c2455b4cc7c3961d8e9b5753713a1c (patch) | |
tree | ba908165d3da653e3b865d5df7e94fd1609c41f8 | |
parent | 793865d66eeb81a8f8234859d7fb246c8b32a0b6 (diff) | |
download | dotfiles-c613262835c2455b4cc7c3961d8e9b5753713a1c.tar.gz dotfiles-c613262835c2455b4cc7c3961d8e9b5753713a1c.zip |
bin: add alacritty and themes
-rw-r--r-- | .config/alacritty/alacritty.toml | 31 | ||||
-rw-r--r-- | .config/alacritty/themes/gruvbox_dark.toml | 30 | ||||
-rw-r--r-- | .config/alacritty/themes/gruvbox_light.toml | 30 |
3 files changed, 91 insertions, 0 deletions
diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..39671bd --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,31 @@ + +[window] + +dimensions.columns = 140 +dimensions.lines = 40 + +[font] +size = 14.0 + +normal.family = "JetBrains Mono NL" +normal.style = "Regular" + +bold.family = "JetBrains Mono NL" +bold.style = "Bold" + +italic.family = "JetBrains Mono NL" +italic.style = "Italic" + +bold_italic.family = "JetBrains Mono NL" +bold_italic.style = "Bold Italic" + +[scrolling] + +history = 10_000 +multiplier = 3 + +[general] + +live_config_reload = true +import = [ "~/.config/alacritty/themes/gruvbox_dark.toml", ] + diff --git a/.config/alacritty/themes/gruvbox_dark.toml b/.config/alacritty/themes/gruvbox_dark.toml new file mode 100644 index 0000000..d2845cd --- /dev/null +++ b/.config/alacritty/themes/gruvbox_dark.toml @@ -0,0 +1,30 @@ +# Colors (Gruvbox dark) + +# Default colors +[colors.primary] +# hard contrast background = = '#1d2021' +background = '#282828' +# soft contrast background = = '#32302f' +foreground = '#ebdbb2' + +# Normal colors +[colors.normal] +black = '#282828' +red = '#cc241d' +green = '#98971a' +yellow = '#d79921' +blue = '#458588' +magenta = '#b16286' +cyan = '#689d6a' +white = '#a89984' + +# Bright colors +[colors.bright] +black = '#928374' +red = '#fb4934' +green = '#b8bb26' +yellow = '#fabd2f' +blue = '#83a598' +magenta = '#d3869b' +cyan = '#8ec07c' +white = '#ebdbb2' diff --git a/.config/alacritty/themes/gruvbox_light.toml b/.config/alacritty/themes/gruvbox_light.toml new file mode 100644 index 0000000..d2852db --- /dev/null +++ b/.config/alacritty/themes/gruvbox_light.toml @@ -0,0 +1,30 @@ +# Colors (Gruvbox light) + +# Default colors +[colors.primary] +# hard contrast background = = '#f9f5d7' +background = '#fbf1c7' +# soft contrast background = = '#f2e5bc' +foreground = '#3c3836' + +# Normal colors +[colors.normal] +black = '#fbf1c7' +red = '#cc241d' +green = '#98971a' +yellow = '#d79921' +blue = '#458588' +magenta = '#b16286' +cyan = '#689d6a' +white = '#7c6f64' + +# Bright colors +[colors.bright] +black = '#928374' +red = '#9d0006' +green = '#79740e' +yellow = '#b57614' +blue = '#076678' +magenta = '#8f3f71' +cyan = '#427b58' +white = '#3c3836' |