Full ~/.config/alacritty/alacritty.yaml file:

Feel free to copy bits and pieces. The full file might not be to your liking. It also references fonts that may or may not be installed on your machine. This is more for my own benefit / backup. I recommend taking a look the environments page to get a breakdown of the useful bits and pieces.

env:
  TERM: xterm-256color
window:
  padding:
    x: 20
    y: 20
  dynamic_padding: true
  decorations: none
font:
  normal:
    family: JetBrainsMono Nerd Font
    style: Regular
  bold:
    family: JetBrainsMono Nerd Font
    style: Bold
  italic:
    family: JetBrainsMono Nerd Font
    style: Italic
  bold_italic:
    family: JetBrainsMono Nerd Font
    style: Bold Italic
  size: 10.5
  ligatures: true
draw_bold_text_with_bright_colors: true
bell:
  animation: Linear
  duration: 500
  color: '#f85c37'
background_opacity: 1.0
selection:
  save_to_clipboard: true
cursor:
  style:
    shape: Beam
    blinking: Always
  blink_interval: 100
  unfocused_hollow: true
  thickness: 0.15
live_config_reload: true
mouse:
  url:
    launcher:
      program: xdg-open
## <- START ->
# Duotone Dark
colors:
  # Default colors
  primary:
    background: '0x1f1c27'
    foreground: '0xb6a0ff'

  # Cursor colors
  cursor:
    text:   '0x1f1c27'
    cursor: '0xff9738'

  # Normal colors
  normal:
    black:   '0x1f1c27'
    red:     '0xd8393d'
    green:   '0x2dcc72'
    yellow:  '0xd8b76e'
    blue:    '0xffc183'
    magenta: '0xdd8d40'
    cyan:    '0x2388ff'
    white:   '0xb6a0ff'

  # Bright colors
  bright:
    black:   '0x353146'
    red:     '0xd8393d'
    green:   '0x2dcc72'
    yellow:  '0xd8b76e'
    blue:    '0xffc183'
    magenta: '0xdd8d40'
    cyan:    '0x2388ff'
    white:   '0xe9e4ff'
## <- END ->