diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-10 12:08:27 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-10 12:08:27 +0530 |
commit | 6bfa2ca06e9a79dd655427b3ef3a8f1cf98ed9ea (patch) | |
tree | 36c3af54dea4824a491bbb2197dc56e942cb48ca /.config/alacritty/themes | |
parent | 610bf8bf4d6c6e0cb1316710b81fdbe4ddc408dc (diff) |
Modularized Alacritty config
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' |