Skip to content

Instantly share code, notes, and snippets.

@AlphaTechnolog
Created September 2, 2021 19:17
Show Gist options
  • Save AlphaTechnolog/d1d5f6557f77f71519cb5713268da7dd to your computer and use it in GitHub Desktop.
Save AlphaTechnolog/d1d5f6557f77f71519cb5713268da7dd to your computer and use it in GitHub Desktop.
alacritty monokai pro theme
colors:
# Default colors
primary:
background: '0x2D2A2E'
foreground: '0xfff1f3'
# Normal colors
normal:
black: '0x2c2525'
red: '0xfd6883'
green: '0xadda78'
yellow: '0xf9cc6c'
blue: '0xf38d70'
magenta: '0xa8a9eb'
cyan: '0x85dacc'
white: '0xfff1f3'
# Bright colors
bright:
black: '0x72696a'
red: '0xfd6883'
green: '0xadda78'
yellow: '0xf9cc6c'
blue: '0xf38d70'
magenta: '0xa8a9eb'
cyan: '0x85dacc'
white: '0xfff1f3'
@suparious
Copy link

Here is the TOML version:

[colors.primary]
background = "0x2D2A2E"
foreground = "0xfff1f3"

[colors.normal]
black = "0x2c2525"
red = "0xfd6883"
green = "0xadda78"
yellow = "0xf9cc6c"
blue = "0xf38d70"
magenta = "0xa8a9eb"
cyan = "0x85dacc"
white = "0xfff1f3"

[colors.bright]
black = "0x72696a"
red = "0xfd6883"
green = "0xadda78"
yellow = "0xf9cc6c"
blue = "0xf38d70"
magenta = "0xa8a9eb"
cyan = "0x85dacc"
white = "0xfff1f3"

@baojiliu
Copy link

baojiliu commented Jul 4, 2024

Here is the TOML version:

[colors.primary]
background = "0x2D2A2E"
foreground = "0xfff1f3"

[colors.normal]
black = "0x2c2525"
red = "0xfd6883"
green = "0xadda78"
yellow = "0xf9cc6c"
blue = "0xf38d70"
magenta = "0xa8a9eb"
cyan = "0x85dacc"
white = "0xfff1f3"

[colors.bright]
black = "0x72696a"
red = "0xfd6883"
green = "0xadda78"
yellow = "0xf9cc6c"
blue = "0xf38d70"
magenta = "0xa8a9eb"
cyan = "0x85dacc"
white = "0xfff1f3"

Thanks a million

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment