Colors & stuff

lightmode
E. Almqvist 3 years ago
parent d724460554
commit 3e37879a7f
  1. 58
      alacritty/.config/alacritty/alacritty.yml

@ -6,8 +6,8 @@ env:
window: window:
padding: padding:
x: 16 x: 12
y: 16 y: 12
# Window title # Window title
title: Terminal title: Terminal
@ -28,7 +28,7 @@ font:
# Normal (roman) font face # Normal (roman) font face
normal: normal:
family: Source Code Pro family: Hack
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Regular style: Regular
@ -36,7 +36,7 @@ font:
# Bold font face # Bold font face
bold: bold:
family: Source Code Pro family: Hack
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold style: Bold
@ -49,13 +49,13 @@ font:
# Bold italic font face # Bold italic font face
bold_italic: bold_italic:
family: Source Code Pro family: Hack
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold Italic style: Bold Italic
# Point size # Point size
size: 8 size: 9
# 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.
@ -66,37 +66,29 @@ font:
# 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 (Tomorrow Night Bright) # Colors
colors: colors:
# Default colors
primary: primary:
background: '0x282c34' background: '0x272a34'
foreground: '0xffffff' foreground: '0xFFFFFF'
selection:
text: '0x000000'
# Normal colors
normal: normal:
black: '0x282a2e' black: '0x1F2229'
red: '0xa54242' red: '0xEC0101'
green: '0x8c9440' green: '0x47D4B9'
yellow: '0xde935f' yellow: '0xFF8A18'
blue: '0x5f819d' blue: '0x277FFF'
magenta: '0x85678f' magenta: '0xD71655'
cyan: '0x5e8d87' cyan: '0x05A1F7'
white: '0x707880' white: '0xFFFFFF'
# Bright colors
bright: bright:
black: '0x373b41' black: '0x1F2229'
red: '0xcc6666' red: '0xD41919'
green: '0xb5bd68' green: '0x5EBDAB'
yellow: '0xf0c674' yellow: '0xFEA44C'
blue: '0x81a2be' blue: '0x367bf0'
magenta: '0xb294bb' magenta: '0xBF2E5D'
cyan: '0x8abeb7' cyan: '0x49AEE6'
white: '0xc5c8c6' white: '0xFFFFFF'
# Window opacity as a floating point number from `0.0` to `1.0`. # Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque. # The value `0.0` is completely transparent and `1.0` is opaque.

Loading…
Cancel
Save