From 1da942a867a8cc8564856a33ec53a388a9dd02af Mon Sep 17 00:00:00 2001 From: Jeff LANCE Date: Thu, 10 Apr 2025 20:03:30 +0200 Subject: [PATCH] Add home/.config/alacritty/alacritty.toml Add home/.config/alacritty/themes/ayu_dark.toml Add home/.config/alacritty/themes/github_dark_high_contrast.yml Add home/.config/alacritty/themes/hyper.toml Add home/.config/alacritty/themes/onedarkpro.toml Add home/.config/alacritty/themes/panda.toml --- home/dot_config/alacritty/alacritty.toml | 50 +++++++++++++++++++ .../dot_config/alacritty/themes/ayu_dark.toml | 28 +++++++++++ .../themes/github_dark_high_contrast.yml | 36 +++++++++++++ home/dot_config/alacritty/themes/hyper.toml | 32 ++++++++++++ .../alacritty/themes/onedarkpro.toml | 33 ++++++++++++ home/dot_config/alacritty/themes/panda.toml | 25 ++++++++++ 6 files changed, 204 insertions(+) create mode 100644 home/dot_config/alacritty/alacritty.toml create mode 100644 home/dot_config/alacritty/themes/ayu_dark.toml create mode 100644 home/dot_config/alacritty/themes/github_dark_high_contrast.yml create mode 100644 home/dot_config/alacritty/themes/hyper.toml create mode 100644 home/dot_config/alacritty/themes/onedarkpro.toml create mode 100644 home/dot_config/alacritty/themes/panda.toml diff --git a/home/dot_config/alacritty/alacritty.toml b/home/dot_config/alacritty/alacritty.toml new file mode 100644 index 0000000..3c3b326 --- /dev/null +++ b/home/dot_config/alacritty/alacritty.toml @@ -0,0 +1,50 @@ +[cursor.style] +blinking = "On" +shape = "Beam" + +[font] +size = 13.0 + +[font.normal] +family = "CaskaydiaCove Nerd Font" +style = "Medium" + +[font.bold] +family = "CaskaydiaCove Nerd Font" +style = "Bold" + +[font.italic] +family = "CaskaydiaCove Nerd Font" +style = "Italic" + +[font.bold_italic] +family = "CaskaydiaCove Nerd Font" +style = "Bold Italic" + +[terminal.shell] +program = "/bin/zsh" + +[window] +decorations = "none" +decorations_theme_variant = "Dark" +dynamic_title = true +opacity = 0.9 +blur = true +title = "Alacritty" + +[colors] +transparent_background_colors = true + +[selection] +save_to_clipboard = true + +[keyboard] +bindings = [ + {key = "|", mods = "Control", chars = "\\x01\\x7c"} +] + +[general] +live_config_reload = true +import = ["/home/jeff/.config/alacritty/themes/ayu_dark.toml"] + +[terminal] diff --git a/home/dot_config/alacritty/themes/ayu_dark.toml b/home/dot_config/alacritty/themes/ayu_dark.toml new file mode 100644 index 0000000..a2ea740 --- /dev/null +++ b/home/dot_config/alacritty/themes/ayu_dark.toml @@ -0,0 +1,28 @@ +# Colors (Ayu Dark) + +# Default colors +[colors.primary] +background = '#0A0E14' +foreground = '#B3B1AD' + +# Normal colors +[colors.normal] +black = '#01060E' +red = '#EA6C73' +green = '#91B362' +yellow = '#F9AF4F' +blue = '#53BDFA' +magenta = '#FAE994' +cyan = '#90E1C6' +white = '#C7C7C7' + +# Bright colors +[colors.bright] +black = '#686868' +red = '#F07178' +green = '#C2D94C' +yellow = '#FFB454' +blue = '#59C2FF' +magenta = '#FFEE99' +cyan = '#95E6CB' +white = '#FFFFFF' diff --git a/home/dot_config/alacritty/themes/github_dark_high_contrast.yml b/home/dot_config/alacritty/themes/github_dark_high_contrast.yml new file mode 100644 index 0000000..98cd9ef --- /dev/null +++ b/home/dot_config/alacritty/themes/github_dark_high_contrast.yml @@ -0,0 +1,36 @@ +# (Github Dark High Contrast) Colors for Alacritty + +colors: + # Default colors + primary: + background: '0x0a0c10' + foreground: '0xf0f3f6' + + # Cursor colors + # + # These will only be used when the `custom_cursor_colors` field is set to `true`. + cursor: + text: '0x0a0c10' + cursor: '0xf0f3f6' + + # Normal colors + normal: + black: '0x7a828e' + red: '0xff9492' + green: '0x26cd4d' + yellow: '0xf0b72f' + blue: '0x71b7ff' + magenta: '0xcb9eff' + cyan: '0x39c5cf' + white: '0xd9dee3' + + # Bright colors + bright: + black: '0x9ea7b3' + red: '0xffb1af' + green: '0x4ae168' + yellow: '0xf7c843' + blue: '0x91cbff' + magenta: '0xcb9eff' + cyan: '0x39c5cf' + white: '0xd9dee3' \ No newline at end of file diff --git a/home/dot_config/alacritty/themes/hyper.toml b/home/dot_config/alacritty/themes/hyper.toml new file mode 100644 index 0000000..89256b2 --- /dev/null +++ b/home/dot_config/alacritty/themes/hyper.toml @@ -0,0 +1,32 @@ +# Colors (Hyper) + +# Default colors +[colors.primary] +background = '#000000' +foreground = '#ffffff' + +[colors.cursor] +text = '#F81CE5' +cursor = '#ffffff' + +# Normal colors +[colors.normal] +black = '#000000' +red = '#fe0100' +green = '#33ff00' +yellow = '#feff00' +blue = '#0066ff' +magenta = '#cc00ff' +cyan = '#00ffff' +white = '#d0d0d0' + +# Bright colors +[colors.bright] +black = '#808080' +red = '#fe0100' +green = '#33ff00' +yellow = '#feff00' +blue = '#0066ff' +magenta = '#cc00ff' +cyan = '#00ffff' +white = '#FFFFFF' diff --git a/home/dot_config/alacritty/themes/onedarkpro.toml b/home/dot_config/alacritty/themes/onedarkpro.toml new file mode 100644 index 0000000..3ac1a8d --- /dev/null +++ b/home/dot_config/alacritty/themes/onedarkpro.toml @@ -0,0 +1,33 @@ +[colors] + +[colors.bright] +black = "#1a1a1a" +blue = "#8fc6f4" +cyan = "#4bced8" +green = "#a9d89d" +magenta = "#e089e7" +red = "#f38897" +white = "#c8cdd5" +yellow = "#edd4a6" + +[colors.cursor] +cursor = "CellForeground" +text = "CellBackground" + +[colors.normal] +black = "#000000" +blue = "#61afef" +cyan = "#2bbac5" +green = "#89ca78" +magenta = "#d55fde" +red = "#ef596f" +white = "#abb2bf" +yellow = "#e5c07b" + +[colors.primary] +background = "#000000" +foreground = "#abb2bf" + +[colors.selection] +background = "#434852" +text = "CellForeground" diff --git a/home/dot_config/alacritty/themes/panda.toml b/home/dot_config/alacritty/themes/panda.toml new file mode 100644 index 0000000..b6a806c --- /dev/null +++ b/home/dot_config/alacritty/themes/panda.toml @@ -0,0 +1,25 @@ +[colors] + +[colors.bright] +black = "#292A2B" +blue = "#6FC1FF" +cyan = "#67d3c2" +green = "#19f9d8" +magenta = "#FF9AC1" +red = "#FF2C6D" +white = "#ffffff" +yellow = "#ffcc95" + +[colors.normal] +black = "#292A2B" +blue = "#45A9F9" +cyan = "#67d3c2" +green = "#19f9d8" +magenta = "#FF75B5" +red = "#FF2C6D" +white = "#E6E6E6" +yellow = "#FFB86C" + +[colors.primary] +background = "#292A2B" +foreground = "#E6E6E6"