[alacritty] Nice and bright theme + a few mouse fixes

This commit is contained in:
Sebastian Schulze 2019-06-05 13:14:37 +02:00
parent 2026a5d9f9
commit b556b94f60
Signed by: bascht
GPG Key ID: 5BCB1D3B4D38A35A
1 changed files with 38 additions and 50 deletions

View File

@ -103,7 +103,7 @@ font:
style: Italic style: Italic
# Point size # Point size
size: 8 size: 12
# Offset is the extra space around each character. `offset.y` can be thought of # Offset is the extra space around each character. `offset.y` can be thought of
# as modifying the line spacing, and `offset.x` as modifying the letter spacing. # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@ -129,61 +129,50 @@ render_timer: false
# If `true`, bold text is drawn using the bright color variants. # If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
# colors:
# primary: # Base16 iA Light 256 - alacritty color config
# background: '0x2E3440' # iA Inc. (modified by aramisgithub)
# foreground: '0xD8DEE9'
# cursor:
# text: '0x2E3440'
# cursor: '0xD8DEE9'
# normal:
# black: '0x3B4252'
# red: '0xBF616A'
# green: '0xA3BE8C'
# yellow: '0xEBCB8B'
# blue: '0x81A1C1'
# magenta: '0xB48EAD'
# cyan: '0x88C0D0'
# white: '0xE5E9F0'
# bright:
# black: '0x4C566A'
# red: '0xBF616A'
# green: '0xA3BE8C'
# yellow: '0xEBCB8B'
# blue: '0x81A1C1'
# magenta: '0xB48EAD'
# cyan: '0x8FBCBB'
# white: '0xECEFF4'
# Colors (One Dark)
colors: colors:
# Default colors # Default colors
primary: primary:
background: '0x282c34' background: '0xf6f6f6'
foreground: '0xabb2bf' foreground: '0x181818'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0xf6f6f6'
cursor: '0x181818'
# Normal colors # Normal colors
normal: normal:
# NOTE: Use '0x131613' for the `black` color if you'd like to see black: '0xf6f6f6'
# black text on the background. red: '0x9c5a02'
black: '0x282c34' green: '0x38781c'
red: '0xe06c75' yellow: '0xc48218'
green: '0x98c379' blue: '0x48bac2'
yellow: '0xd19a66' magenta: '0xa94598'
blue: '0x61afef' cyan: '0x2d6bb1'
magenta: '0xc678dd' white: '0x181818'
cyan: '0x56b6c2'
white: '0xabb2bf'
# Bright colors # Bright colors
bright: bright:
black: '0x5c6370' black: '0x898989'
red: '0xe06c75' red: '0x9c5a02'
green: '0x98c379' green: '0x38781c'
yellow: '0xd19a66' yellow: '0xc48218'
blue: '0x61afef' blue: '0x48bac2'
magenta: '0xc678dd' magenta: '0xa94598'
cyan: '0x56b6c2' cyan: '0x2d6bb1'
white: '0xffffff' white: '0xf8f8f8'
indexed_colors:
- { index: 16, color: '0xc43e18' }
- { index: 17, color: '0x8b6c37' }
- { index: 18, color: '0xdedede' }
- { index: 19, color: '0xbde5f2' }
- { index: 20, color: '0x767676' }
- { index: 21, color: '0xe8e8e8' }
# Visual Bell # Visual Bell
# #
# Any time the BEL code is received, Alacritty "rings" the visual bell. Once # Any time the BEL code is received, Alacritty "rings" the visual bell. Once
@ -207,7 +196,7 @@ colors:
# Specifying a `duration` of `0` will disable the visual bell. # Specifying a `duration` of `0` will disable the visual bell.
visual_bell: visual_bell:
animation: EaseOutExpo animation: EaseOutExpo
duration: 0 duration: 100
# Background opacity # Background opacity
# #
@ -232,7 +221,6 @@ background_opacity: 1.0
# section. # section.
mouse_bindings: mouse_bindings:
- { mouse: Middle, action: PasteSelection } - { mouse: Middle, action: PasteSelection }
- { mouse: Middle, mods: Shift, action: PasteSelection }
mouse: mouse:
@ -277,7 +265,7 @@ cursor:
# - ▇ Block # - ▇ Block
# - _ Underline # - _ Underline
# - | Beam # - | Beam
style: Underline style: Block
# If this is `true`, the cursor will be rendered as a hollow box when the # If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused. # window is not focused.