From a8f3f5cb5a6f7d5dfaa8a1f1911430e669d52a87 Mon Sep 17 00:00:00 2001 From: Kenneth Powers Date: Tue, 24 Aug 2021 13:21:41 -0500 Subject: [PATCH 1/4] Add Alacritty themes --- extra/alacritty-catpuccino.yml | 35 +++++++++++++++++++++++++++++++++ extra/alacritty-light-melya.yml | 35 +++++++++++++++++++++++++++++++++ extra/alacritty-neon-latte.yml | 35 +++++++++++++++++++++++++++++++++ 3 files changed, 105 insertions(+) create mode 100644 extra/alacritty-catpuccino.yml create mode 100644 extra/alacritty-light-melya.yml create mode 100644 extra/alacritty-neon-latte.yml diff --git a/extra/alacritty-catpuccino.yml b/extra/alacritty-catpuccino.yml new file mode 100644 index 0000000..95d5f0a --- /dev/null +++ b/extra/alacritty-catpuccino.yml @@ -0,0 +1,35 @@ +# Catpuccino +colors: + # Default colors + primary: + background: '0x0e171c' + foreground: '0xabb2bf' + + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: '0x0e171c' + cursor: '0xabb2bf' + + # Normal colors + normal: + black: '0x393b44' + red: '0xc94f6d' + green: '0x97c374' + yellow: '0xdbc074' + blue: '0x61afef' + magenta: '0xc678dd' + cyan: '0x63cdcf' + white: '0xdfdfe0' + + # Bright colors + bright: + black: '0x7f8c98' + red: '0xe06c75' + green: '0x58cd8b' + yellow: '0xffe37e' + blue: '0x84cee4' + magenta: '0xb8a1e3' + cyan: '0x59f0ff' + white: '0xfdebc3' + + # indexed_colors: [] diff --git a/extra/alacritty-light-melya.yml b/extra/alacritty-light-melya.yml new file mode 100644 index 0000000..446cabc --- /dev/null +++ b/extra/alacritty-light-melya.yml @@ -0,0 +1,35 @@ +# Catppuccino Light Melya +colors: + # Default colors + primary: + background: '0xfbfbfb' + foreground: '0x0e171c' + + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: '0x0e171c' + cursor: '0xfbfbfb' + + # Normal colors + normal: + black: '0x393b44' + red: '0xb0304e' + green: '0x76ab49' + yellow: '0xffce1f' + blue: '0x157c8e' + magenta: '0xa414cc' + cyan: '0x63cdcf' + white: '0xdfdfe0' + + # Bright colors + bright: + black: '0x7f8c98' + red: '0xd84652' + green: '0x58cd8b' + yellow: '0xffe37e' + blue: '0x84cee4' + magenta: '0xb8a1e3' + cyan: '0x59f0ff' + white: '0x0e171c' + + # indexed_colors: [] diff --git a/extra/alacritty-neon-latte.yml b/extra/alacritty-neon-latte.yml new file mode 100644 index 0000000..298d75b --- /dev/null +++ b/extra/alacritty-neon-latte.yml @@ -0,0 +1,35 @@ +# Catppuccino Light Melya +colors: + # Default colors + primary: + background: '0x150b26' + foreground: '0xfdebc3' + + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: '0xfdebc3' + cursor: '0x150b26' + + # Normal colors + normal: + black: '0x393b44' + red: '0xcf4f6d' + green: '0x51ee72' + yellow: '0xffe070' + blue: '0x96e2f0' + magenta: '0xd97bf2' + cyan: '0x63cdcf' + white: '0xdfdfe0' + + # Bright colors + bright: + black: '0x7f8c98' + red: '0xe06c75' + green: '0x58cd8b' + yellow: '0xffe37e' + blue: '0x84cee4' + magenta: '0xb8a1e3' + cyan: '0x59f0ff' + white: '0xfdebc3' + + # indexed_colors: [] From a1ca994dd55588a9c41856a0a0c868cbc9513435 Mon Sep 17 00:00:00 2001 From: Kenneth Powers Date: Tue, 24 Aug 2021 14:54:28 -0500 Subject: [PATCH 2/4] Change directory structure to match #8 --- extra/{alacritty-catpuccino.yml => alacritty/catpuccino.yml} | 0 extra/{alacritty-light-melya.yml => alacritty/light-melya.yml} | 0 extra/{alacritty-neon-latte.yml => alacritty/neon-latte.yml} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename extra/{alacritty-catpuccino.yml => alacritty/catpuccino.yml} (100%) rename extra/{alacritty-light-melya.yml => alacritty/light-melya.yml} (100%) rename extra/{alacritty-neon-latte.yml => alacritty/neon-latte.yml} (100%) diff --git a/extra/alacritty-catpuccino.yml b/extra/alacritty/catpuccino.yml similarity index 100% rename from extra/alacritty-catpuccino.yml rename to extra/alacritty/catpuccino.yml diff --git a/extra/alacritty-light-melya.yml b/extra/alacritty/light-melya.yml similarity index 100% rename from extra/alacritty-light-melya.yml rename to extra/alacritty/light-melya.yml diff --git a/extra/alacritty-neon-latte.yml b/extra/alacritty/neon-latte.yml similarity index 100% rename from extra/alacritty-neon-latte.yml rename to extra/alacritty/neon-latte.yml From bdfeb03e86e16666612daa771a98ee44aa2722cb Mon Sep 17 00:00:00 2001 From: Kenneth Powers Date: Wed, 25 Aug 2021 15:35:45 -0500 Subject: [PATCH 3/4] Add indexed colors to alacritty themes --- extra/alacritty/catpuccino.yml | 4 +++- extra/alacritty/light-melya.yml | 4 +++- extra/alacritty/neon-latte.yml | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/extra/alacritty/catpuccino.yml b/extra/alacritty/catpuccino.yml index 95d5f0a..23e0e86 100644 --- a/extra/alacritty/catpuccino.yml +++ b/extra/alacritty/catpuccino.yml @@ -32,4 +32,6 @@ colors: cyan: '0x59f0ff' white: '0xfdebc3' - # indexed_colors: [] + indexed_colors: + - { index: 16, color: '0xffe37e' } + - { index: 17, color: '0xe06c75' } diff --git a/extra/alacritty/light-melya.yml b/extra/alacritty/light-melya.yml index 446cabc..218e6de 100644 --- a/extra/alacritty/light-melya.yml +++ b/extra/alacritty/light-melya.yml @@ -32,4 +32,6 @@ colors: cyan: '0x59f0ff' white: '0x0e171c' - # indexed_colors: [] + indexed_colors: + - { index: 16, color: '0xffce1f' } + - { index: 17, color: '0xd84652' } diff --git a/extra/alacritty/neon-latte.yml b/extra/alacritty/neon-latte.yml index 298d75b..0675973 100644 --- a/extra/alacritty/neon-latte.yml +++ b/extra/alacritty/neon-latte.yml @@ -32,4 +32,6 @@ colors: cyan: '0x59f0ff' white: '0xfdebc3' - # indexed_colors: [] + indexed_colors: + - { index: 16, color: '0xffe37e' } + - { index: 17, color: '0xe06c75' } From a963893816975a16ee8f94c71616968b5528f18f Mon Sep 17 00:00:00 2001 From: Kenneth Powers Date: Wed, 25 Aug 2021 15:45:42 -0500 Subject: [PATCH 4/4] Add README for Alacritty themes --- extra/alacritty/README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 extra/alacritty/README.md diff --git a/extra/alacritty/README.md b/extra/alacritty/README.md new file mode 100644 index 0000000..b110104 --- /dev/null +++ b/extra/alacritty/README.md @@ -0,0 +1,27 @@ +# Alacritty Themes + +Making your Alacritty terminal emulator colors match your Catppucino colors is +easy! Simply copy the values from the respective `.yml` file in this directory +and paste it over the `colors` configuration in your `alacritty.yml` file. + +## `tmux` Users + +If you use `tmux` inside of Alacritty you may notice that your terminal colors +don't match your Catppucino colors. The solution is two-fold. First, make sure +you have the following set in `alacritty.yml`: + +```yml +env: + TERM: xterm-256color +``` + +Second, make sure you have the following in your `tmux.conf`: + +``` +set -g default-terminal "xterm-256color" +set-option -ga terminal-overrides ",xterm-256color:Tc" +``` + +Now you should be all set! + +See https://github.com/Pocco81/Catppuccino.nvim/pull/9 for more info.