From f3e861af9a95babad3e2689bc1d2b8f9cfe7676c Mon Sep 17 00:00:00 2001 From: Florestan Bredow Date: Wed, 20 Sep 2023 09:17:26 +0200 Subject: [PATCH] Change Alacritty color scheme --- .config/alacritty/alacritty.yml | 56 ++------------------ .config/alacritty/themes/cyber-punk-neon.yml | 46 ++++++++++++++++ .config/alacritty/themes/monokai-pro.yml | 27 ++++++++++ 3 files changed, 78 insertions(+), 51 deletions(-) create mode 100644 .config/alacritty/themes/cyber-punk-neon.yml create mode 100644 .config/alacritty/themes/monokai-pro.yml diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index e5fd085..60a9c9c 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -66,19 +66,19 @@ scrolling: font: # Normal (roman) font face normal: - family: hack + family: Hack Nerd Font # The `style` can be specified to pick a specific face. style: Regular # Bold font face bold: - family: hack + family: Hack Nerd Font # The `style` can be specified to pick a specific face. style: Bold # Italic font face italic: - family: hack + family: Hack Nerd Font # The `style` can be specified to pick a specific face. style: Italic @@ -101,54 +101,8 @@ font: # If `true`, bold text is drawn using the bright color variants. draw_bold_text_with_bright_colors: true -# Cyberpunk-Neon colours -colors: - # Default colours - primary: - background: '0x000b1e' - foreground: '0x0abdc6' - - # Colors that should be used to draw the terminal cursor. If these are unset, - # the cursor colour will be the inverse of the cell colour. - # cursor: - # text: '0x2e2e2d' - # # text: '0x000000' - # cursor: '0xffffff' - - # Normal colors - normal: - black: '0x123e7c' - red: '0xff0000' - green: '0xd300c4' - yellow: '0xf57800' - blue: '0x123e7c' - magenta: '0x711c91' - cyan: '0x0abdc6' - white: '0xd7d7d5' - - # Bright colors - bright: - black: '0x1c61c2' - red: '0xff0000' - green: '0xd300c4' - yellow: '0xf57800' - blue: '0x00ff00' - magenta: '0x711c91' - cyan: '0x0abdc6' - white: '0xd7d7d5' - - # dim colors - dim: - black: '0x1c61c2' - red: '0xff0000' - green: '0xd300c4' - yellow: '0xf57800' - blue: '0x123e7c' - magenta: '0x711c91' - cyan: '0x0abdc6' - white: '0xd7d7d5' - - +import: + - ~/.config/alacritty/themes/themes/monokai-pro.yaml # Visual Bell # diff --git a/.config/alacritty/themes/cyber-punk-neon.yml b/.config/alacritty/themes/cyber-punk-neon.yml new file mode 100644 index 0000000..7ede534 --- /dev/null +++ b/.config/alacritty/themes/cyber-punk-neon.yml @@ -0,0 +1,46 @@ +# Cyberpunk-Neon colours +colors: + # Default colours + primary: + background: '0x000b1e' + foreground: '0x0abdc6' + + # Colors that should be used to draw the terminal cursor. If these are unset, + # the cursor colour will be the inverse of the cell colour. + # cursor: + # text: '0x2e2e2d' + # # text: '0x000000' + # cursor: '0xffffff' + + # Normal colors + normal: + black: '0x123e7c' + red: '0xff0000' + green: '0xd300c4' + yellow: '0xf57800' + blue: '0x123e7c' + magenta: '0x711c91' + cyan: '0x0abdc6' + white: '0xd7d7d5' + + # Bright colors + bright: + black: '0x1c61c2' + red: '0xff0000' + green: '0xd300c4' + yellow: '0xf57800' + blue: '0x00ff00' + magenta: '0x711c91' + cyan: '0x0abdc6' + white: '0xd7d7d5' + + # dim colors + dim: + black: '0x1c61c2' + red: '0xff0000' + green: '0xd300c4' + yellow: '0xf57800' + blue: '0x123e7c' + magenta: '0x711c91' + cyan: '0x0abdc6' + white: '0xd7d7d5' \ No newline at end of file diff --git a/.config/alacritty/themes/monokai-pro.yml b/.config/alacritty/themes/monokai-pro.yml new file mode 100644 index 0000000..331316b --- /dev/null +++ b/.config/alacritty/themes/monokai-pro.yml @@ -0,0 +1,27 @@ +colors: + # Default colors + primary: + background: '0x2D2A2E' + foreground: '0xfff1f3' + + # Normal colors + normal: + black: '0x2c2525' + red: '0xfd6883' + green: '0xadda78' + yellow: '0xf9cc6c' + blue: '0xf38d70' + magenta: '0xa8a9eb' + cyan: '0x85dacc' + white: '0xfff1f3' + + # Bright colors + bright: + black: '0x72696a' + red: '0xfd6883' + green: '0xadda78' + yellow: '0xf9cc6c' + blue: '0xf38d70' + magenta: '0xa8a9eb' + cyan: '0x85dacc' + white: '0xfff1f3' \ No newline at end of file