Colors & stuff

lightmode
E. Almqvist 3 years ago
parent d724460554
commit 3e37879a7f
  1. 64
      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: '0x272a34'
background: '0x282c34' foreground: '0xFFFFFF'
foreground: '0xffffff' normal:
black: '0x1F2229'
selection: red: '0xEC0101'
text: '0x000000' green: '0x47D4B9'
yellow: '0xFF8A18'
# Normal colors blue: '0x277FFF'
normal: magenta: '0xD71655'
black: '0x282a2e' cyan: '0x05A1F7'
red: '0xa54242' white: '0xFFFFFF'
green: '0x8c9440' bright:
yellow: '0xde935f' black: '0x1F2229'
blue: '0x5f819d' red: '0xD41919'
magenta: '0x85678f' green: '0x5EBDAB'
cyan: '0x5e8d87' yellow: '0xFEA44C'
white: '0x707880' blue: '0x367bf0'
magenta: '0xBF2E5D'
# Bright colors cyan: '0x49AEE6'
bright: white: '0xFFFFFF'
black: '0x373b41'
red: '0xcc6666'
green: '0xb5bd68'
yellow: '0xf0c674'
blue: '0x81a2be'
magenta: '0xb294bb'
cyan: '0x8abeb7'
white: '0xc5c8c6'
# 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