From fe5847e379b3d1c52896fa69ff8faf20cde483cc Mon Sep 17 00:00:00 2001 From: GageErwin <88586582+GageErwin@users.noreply.github.com> Date: Sat, 24 Feb 2024 13:49:47 -0600 Subject: [PATCH] feat: add alacritty toml file (#31) * add alacritty toml file * fix formatting --------- Co-authored-by: Gage Erwin --- extra/alacritty/tokyodark.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 extra/alacritty/tokyodark.toml diff --git a/extra/alacritty/tokyodark.toml b/extra/alacritty/tokyodark.toml new file mode 100644 index 0000000..5c5352c --- /dev/null +++ b/extra/alacritty/tokyodark.toml @@ -0,0 +1,31 @@ +[colors.primary] + background = '#11121d' + foreground = '#a0a8cd' + +[colors.normal] + black = '#06080a' + blue = '#7199ee' + cyan = '#38a89d' + green = '#95c561' + magenta = '#a485dd' + red = '#ee6d85' + white = '#a0a8cd' + yellow = '#d7a65f' + +[colors.bright] + black = '#212234' + blue = '#7199ee' + cyan = '#38a89d' + green = '#95c561' + magenta = '#a485dd' + red = '#ee6d85' + white = '#a0a8cd' + yellow = '#d7a65f' + +[colors.cursor] + cursor = '#a0a8cd' + text = '#11121d' + +[colors.selection] + background = '#11121d' + text = '#a0a8cd'