Skip to content

Instantly share code, notes, and snippets.

@BobbyWibowo
Last active May 24, 2022 18:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BobbyWibowo/9b636c02c06b6f1a1181b0f5096b3928 to your computer and use it in GitHub Desktop.
Save BobbyWibowo/9b636c02c06b6f1a1181b0f5096b3928 to your computer and use it in GitHub Desktop.
Materia Dark colorscheme for Alacritty
# If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true
# Colors (Materia Dark)
colors:
# Default colors
primary:
background: '0x181818'
foreground: '0xeff0f1'
# Normal colors
normal:
black: '0x181818'
red: '0xe14245'
green: '0x55ba79'
yellow: '0xf67400'
blue: '0x4285f4'
magenta: '0x9b59b6'
cyan: '0x1abc9c'
white: '0xeff0f1'
# Bright colors
bright:
black: '0x7f8c8d'
red: '0xc0392b'
green: '0x00c853'
yellow: '0xfdbc4b'
blue: '0x6aa6f4'
magenta: '0x8e44ad'
cyan: '0x16a085'
white: '0xfcfcfc'
# Dim colors (Optional)
dim:
black: '0x181818'
red: '0x783228'
green: '0x149459'
yellow: '0xb65619'
blue: '0x345284'
magenta: '0x614a73'
cyan: '0x186c60'
white: '0x63686d'
@BobbyWibowo
Copy link
Author

BobbyWibowo commented Feb 12, 2019

To be used alongside PapirusDevelopmentTeam/materia-kde, as it uses the exact same Konsole's colorscheme of that theme.

image

Font: JetBrainsMono Nerd Font at size 11
Shell: ZSH + Powerlevel10k theme

@BobbyWibowo
Copy link
Author

Updated 28 May 2020.

@BobbyWibowo
Copy link
Author

VSCode Integrated Terminal colorscheme:

    "terminal.explorerKind": "integrated",
    "workbench.colorCustomizations": {
        "terminal.ansiBlack": "#181818",
        "terminal.ansiBlue": "#4285f4",
        "terminal.ansiBrightBlack": "#7f8c8d",
        "terminal.ansiBrightBlue": "#6aa6f4",
        "terminal.ansiBrightCyan": "#16a085",
        "terminal.ansiBrightGreen": "#00c853",
        "terminal.ansiBrightMagenta": "#8e44ad",
        "terminal.ansiBrightRed": "#c0392b",
        "terminal.ansiBrightWhite": "#fcfcfc",
        "terminal.ansiBrightYellow": "#fdbc4b",
        "terminal.ansiCyan": "#1abc9c",
        "terminal.ansiGreen": "#55ba79",
        "terminal.ansiMagenta": "#9b59b6",
        "terminal.ansiRed": "#e14245",
        "terminal.ansiWhite": "#eff0f1",
        "terminal.ansiYellow": "#f67400",
        "terminal.background": "#181818",
        "terminal.foreground": "#eff0f1"
    }

@BobbyWibowo
Copy link
Author

I'm moving to Kitty https://github.com/kovidgoyal/kitty

Here's a matching Materia Dark colorscheme for Kitty for those interested:
https://gist.github.com/BobbyWibowo/be5a7a5e01a585233c491f270e34a7e4

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