Skip to content

Instantly share code, notes, and snippets.

@sainnhe
Created January 24, 2022 07:40
Show Gist options
  • Save sainnhe/e5c4512d5bcfcb46afd493beb86223c6 to your computer and use it in GitHub Desktop.
Save sainnhe/e5c4512d5bcfcb46afd493beb86223c6 to your computer and use it in GitHub Desktop.
Port of sonokai color scheme to alacritty

Installation

Add this to ~/.config/alacritty/alacritty.yml

default

colors:
  primary:
    background: "0x2c2e34"
    foreground: "0xe2e2e3"

  normal:
    black: "0x181819"
    red: "0xfc5d7c"
    green: "0x9ed072"
    yellow: "0xe7c664"
    blue: "0x76cce0"
    magenta: "0xb39df3"
    cyan: "0xf39660"
    white: "0xe2e2e3"

  bright:
    black: "0x7f8490"
    red: "0xfc5d7c"
    green: "0x9ed072"
    yellow: "0xe7c664"
    blue: "0x76cce0"
    magenta: "0xb39df3"
    cyan: "0xf39660"
    white: "0xe2e2e3"

shusia

colors:
  primary:
    background: "0x2d2a2e"
    foreground: "0xe3e1e4"

  normal:
    black: "0x1a181a"
    red: "0xf85e84"
    green: "0x9ecd6f"
    yellow: "0xe5c463"
    blue: "0x7accd7"
    magenta: "0xab9df2"
    cyan: "0xef9062"
    white: "0xe3e1e4"

  bright:
    black: "0x848089"
    red: "0xf85e84"
    green: "0x9ecd6f"
    yellow: "0xe5c463"
    blue: "0x7accd7"
    magenta: "0xab9df2"
    cyan: "0xef9062"
    white: "0xe3e1e4"

andromeda

colors:
  primary:
    background: "0x2b2d3a"
    foreground: "0xe1e3e4"

  normal:
    black: "0x181a1c"
    red: "0xfb617e"
    green: "0x9ed06c"
    yellow: "0xedc763"
    blue: "0x6dcae8"
    magenta: "0xbb97ee"
    cyan: "0xf89860"
    white: "0xe1e3e4"

  bright:
    black: "0x7e8294"
    red: "0xfb617e"
    green: "0x9ed06c"
    yellow: "0xedc763"
    blue: "0x6dcae8"
    magenta: "0xbb97ee"
    cyan: "0xf89860"
    white: "0xe1e3e4"

atlantis

colors:
  primary:
    background: "0x2a2f38"
    foreground: "0xe1e3e4"

  normal:
    black: "0x181a1c"
    red: "0xff6578"
    green: "0x9dd274"
    yellow: "0xeacb64"
    blue: "0x72cce8"
    magenta: "0xba9cf3"
    cyan: "0xf69c5e"
    white: "0xe1e3e4"

  bright:
    black: "0x828a9a"
    red: "0xff6578"
    green: "0x9dd274"
    yellow: "0xeacb64"
    blue: "0x72cce8"
    magenta: "0xba9cf3"
    cyan: "0xf69c5e"
    white: "0xe1e3e4"

maia

colors:
  primary:
    background: "0x273136"
    foreground: "0xe1e2e3"

  normal:
    black: "0x1c1e1f"
    red: "0xf76c7c"
    green: "0x9cd57b"
    yellow: "0xe3d367"
    blue: "0x78cee9"
    magenta: "0xbaa0f8"
    cyan: "0xf3a96a"
    white: "0xe1e2e3"

  bright:
    black: "0x82878b"
    red: "0xf76c7c"
    green: "0x9cd57b"
    yellow: "0xe3d367"
    blue: "0x78cee9"
    magenta: "0xbaa0f8"
    cyan: "0xf3a96a"
    white: "0xe1e2e3"

espresso

colors:
  primary:
    background: "0x312c2b"
    foreground: "0xe4e3e1"

  normal:
    black: "0x1f1e1c"
    red: "0xf86882"
    green: "0xa6cd77"
    yellow: "0xf0c66f"
    blue: "0x81d0c9"
    magenta: "0x9fa0e1"
    cyan: "0xf08d71"
    white: "0xe4e3e1"

  bright:
    black: "0x90817b"
    red: "0xf86882"
    green: "0xa6cd77"
    yellow: "0xf0c66f"
    blue: "0x81d0c9"
    magenta: "0x9fa0e1"
    cyan: "0xf08d71"
    white: "0xe4e3e1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment