Skip to content

Instantly share code, notes, and snippets.

@BobbyWibowo
Last active January 3, 2022 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BobbyWibowo/8c9c014f29c1804eb15fb27983619a21 to your computer and use it in GitHub Desktop.
Save BobbyWibowo/8c9c014f29c1804eb15fb27983619a21 to your computer and use it in GitHub Desktop.
One Dark (to be paired with Qogir KDE/GTK+ theme) colorscheme for Alacritty
# If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true
# Colors (One Dark - to be paired with Qogir KDE/GTK+ theme)
colors:
# Default colors
primary:
background: '0x1e222a'
foreground: '0xfcfcfc'
# Normal colors
normal:
black: '0x272b32'
red: '0xd2646d'
green: '0x98c379'
yellow: '0xe4c079'
blue: '0x62aeef'
magenta: '0xc778dd'
cyan: '0x55b6c2'
white: '0xabb2bf'
# Bright colors
bright:
black: '0x7f8c8d'
red: '0xb4565e'
green: '0x81a566'
yellow: '0xc8a76a'
blue: '0x5293c8'
magenta: '0xb36cc8'
cyan: '0x4ba0aa'
white: '0xffffff'
# Dim colors (Optional)
dim:
black: '0x31363b'
red: '0xfa7882'
green: '0xaddc88'
yellow: '0xfad184'
blue: '0x67b8fa'
magenta: '0xdf87fa'
cyan: '0x65d9e6'
white: '0x63686d'
@BobbyWibowo
Copy link
Author

Based on this specific One Dark Konsole colorscheme:
KDE Store: https://store.kde.org/p/1571658/
GitHub: https://github.com/Prayag2/kde_onedark

If you also use Qogir KDE/GTK+ theme, I recommend using Force Blur KWin script to force blur effect onto Alacritty (its class name is alacritty):
KDE Store: https://store.kde.org/p/1294604
GitHub: https://github.com/esjeon/kwin-forceblur (more detailed installation steps here)

Then change window -> opacity in Alacritty config to something that matches your Kvantum transparency settings for other windows.

@BobbyWibowo
Copy link
Author

BobbyWibowo commented Jan 3, 2022

Screenshot

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

@BobbyWibowo
Copy link
Author

BobbyWibowo commented Jan 3, 2022

VSCode Integrated Terminal colorscheme:

    "terminal.explorerKind": "integrated",
    "workbench.colorCustomizations": {
        "terminal.ansiBlack": "#272b32",
        "terminal.ansiBlue": "#62aeef",
        "terminal.ansiBrightBlack": "#7f8c8d",
        "terminal.ansiBrightBlue": "#5293c8",
        "terminal.ansiBrightCyan": "#4ba0aa",
        "terminal.ansiBrightGreen": "#81a566",
        "terminal.ansiBrightMagenta": "#b36cc8",
        "terminal.ansiBrightRed": "#b4565e",
        "terminal.ansiBrightWhite": "#ffffff",
        "terminal.ansiBrightYellow": "#c8a76a",
        "terminal.ansiCyan": "#55b6c2",
        "terminal.ansiGreen": "#98c379",
        "terminal.ansiMagenta": "#c778dd",
        "terminal.ansiRed": "#d2646d",
        "terminal.ansiWhite": "#abb2bf",
        "terminal.ansiYellow": "#e4c079",
        "terminal.background": "#1e222a",
        "terminal.foreground": "#fcfcfc"
    }

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