diff options
Diffstat (limited to '.config/alacritty/themes')
-rw-r--r-- | .config/alacritty/themes/doom-one-dark.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.config/alacritty/themes/doom-one-dark.yml b/.config/alacritty/themes/doom-one-dark.yml new file mode 100644 index 0000000..a9594c3 --- /dev/null +++ b/.config/alacritty/themes/doom-one-dark.yml @@ -0,0 +1,29 @@ +# Doom One Dark theme, copied from DistroTube's config + +colors: + # Default colors + primary: + background: '0x282c34' + foreground: '0xbbc2cf' + + # Normal colors + normal: + black: '0x1c1f24' + red: '0xff6c6b' + green: '0x98be65' + yellow: '0xda8548' + blue: '0x51afef' + magenta: '0xc678dd' + cyan: '0x5699af' + white: '0x202328' + + # Bright colors + bright: + black: '0x5b6268' + red: '0xda8548' + green: '0x4db5bd' + yellow: '0xecbe7b' + blue: '0x3071db' # This is 2257a0 in Doom Emacs but I lightened it. + magenta: '0xa9a1e1' + cyan: '0x46d9ff' + white: '0xdfdfdf' |