summaryrefslogtreecommitdiff
path: root/.config/alacritty
diff options
context:
space:
mode:
Diffstat (limited to '.config/alacritty')
-rw-r--r--.config/alacritty/alacritty.yml71
1 files changed, 21 insertions, 50 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
index b0b2644..be4f3ab 100644
--- a/.config/alacritty/alacritty.yml
+++ b/.config/alacritty/alacritty.yml
@@ -37,65 +37,36 @@ font:
# Style can be specified to pick a specific face.
style: italic
+
+# XTerm's default colors
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'
-
+ background: '0x000000'
+ foreground: '0xffffff'
# Normal colors
normal:
- black: '#1e2127'
- red: '#e06c75'
- green: '#98c379'
- yellow: '#d19a66'
- blue: '#61afef'
- magenta: '#c678dd'
- cyan: '#56b6c2'
- white: '#828791'
+ black: '#000000'
+ red: '#cd0000'
+ green: '#00cd00'
+ yellow: '#cdcd00'
+ blue: '#0000ee'
+ magenta: '#cd00cd'
+ cyan: '#00cdcd'
+ white: '#e5e5e5'
# Bright colors
bright:
- black: '#5c6370'
- red: '#e06c75'
- green: '#98c379'
- yellow: '#d19a66'
- blue: '#61afef'
- magenta: '#c678dd'
- cyan: '#56b6c2'
- white: '#e6efff'
-
- # Dim colors
- #
- # If the dim colors are not set, they will be calculated automatically based
- # on the `normal` colors.
- dim:
- black: '#1e2127'
- red: '#e06c75'
- green: '#98c379'
- yellow: '#d19a66'
- blue: '#61afef'
- magenta: '#c678dd'
- cyan: '#56b6c2'
- white: '#828791'
+ black: '#7f7f7f'
+ red: '#ff0000'
+ green: '#00ff00'
+ yellow: '#ffff00'
+ blue: '#5c5cff'
+ magenta: '#ff00ff'
+ cyan: '#00ffff'
+ white: '#ffffff'
- # Indexed Colors
+# Indexed Colors
#
# The indexed colors include all colors from 16 to 256.
# When these are not set, they're filled with sensible defaults.