From 4e3e69a99e5711ec8c603b5806ec3b421697f258 Mon Sep 17 00:00:00 2001 From: Florestan Bredow Date: Tue, 24 Jun 2025 14:42:19 +0200 Subject: [PATCH] [alacritty] change le theme --- .config/alacritty/themes/cyber-punk-neon.yml | 46 -------------- .config/alacritty/themes/dark-one.yml | 66 ++++++++++++++++++++ .config/alacritty/themes/monokai-pro.yml | 27 -------- 3 files changed, 66 insertions(+), 73 deletions(-) delete mode 100644 .config/alacritty/themes/cyber-punk-neon.yml create mode 100644 .config/alacritty/themes/dark-one.yml delete mode 100644 .config/alacritty/themes/monokai-pro.yml diff --git a/.config/alacritty/themes/cyber-punk-neon.yml b/.config/alacritty/themes/cyber-punk-neon.yml deleted file mode 100644 index 7ede534..0000000 --- a/.config/alacritty/themes/cyber-punk-neon.yml +++ /dev/null @@ -1,46 +0,0 @@ -# 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/dark-one.yml b/.config/alacritty/themes/dark-one.yml new file mode 100644 index 0000000..c99c93b --- /dev/null +++ b/.config/alacritty/themes/dark-one.yml @@ -0,0 +1,66 @@ + +colors: + # Default colors + primary: + background: '0x1e2127' + foreground: '0xabb2bf' + + # Bright and dim foreground colors + # + # The dimmed foreground color is calculated automatically if it is not present. + # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors` + # is `false`, the normal foreground color will be used. + #dim_foreground: '0x9a9a9a' + bright_foreground: '0xe6efff' + + # Cursor colors + # + # Colors which should be used to draw the terminal cursor. If these are unset, + # the cursor color will be the inverse of the cell color. + #cursor: + # text: '0x000000' + # cursor: '0xffffff' + + # Normal colors + normal: + black: '0x1e2127' + red: '0xe06c75' + green: '0x98c379' + yellow: '0xd19a66' + blue: '0x61afef' + magenta: '0xc678dd' + cyan: '0x56b6c2' + white: '0x828791' + + # Bright colors + bright: + black: '0x5c6370' + red: '0xe06c75' + green: '0x98c379' + yellow: '0xd19a66' + blue: '0x61afef' + magenta: '0xc678dd' + cyan: '0x56b6c2' + white: '0xe6efff' + + # Dim colors + # + # If the dim colors are not set, they will be calculated automatically based + # on the `normal` colors. + dim: + black: '0x1e2127' + red: '0xe06c75' + green: '0x98c379' + yellow: '0xd19a66' + blue: '0x61afef' + magenta: '0xc678dd' + cyan: '0x56b6c2' + white: '0x828791' + + # Indexed Colors + # + # The indexed colors include all colors from 16 to 256. + # When these are not set, they're filled with sensible defaults. + #indexed_colors: + # - { index: 16, color: '0x000000' } + diff --git a/.config/alacritty/themes/monokai-pro.yml b/.config/alacritty/themes/monokai-pro.yml deleted file mode 100644 index 331316b..0000000 --- a/.config/alacritty/themes/monokai-pro.yml +++ /dev/null @@ -1,27 +0,0 @@ -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