From b9e441bce8d1de57990e9ad02caea7162a239b3a Mon Sep 17 00:00:00 2001 From: Zak Hammerman Date: Thu, 18 Jun 2020 19:19:11 -0500 Subject: [PATCH] Add readme and YAML file --- README.md | 13 +++++++++++ tokyo-night.yaml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 README.md create mode 100644 tokyo-night.yaml diff --git a/README.md b/README.md new file mode 100644 index 0000000..0f73184 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Tokyo Night: Alacritty + +## Alacritty theme based on VS Code and Vim themes + +Alacritty theme cobbled together from both [enkia/tokyo-night-vscode-theme](https://github.com/enkia/tokyo-night-vscode-theme) +and [ghifarit53/tokyonight.vim](https://github.com/ghifarit53/tokyonight.vim). + +Pull requests welcome. + +## Usage + +Copy the contents of `tokyo-night.yaml` into `~/alacritty/alacritty.yml`, then +set `colors: *tokyo-night` or `colors: *tokyo-night-storm`. diff --git a/tokyo-night.yaml b/tokyo-night.yaml new file mode 100644 index 0000000..2e81fb6 --- /dev/null +++ b/tokyo-night.yaml @@ -0,0 +1,59 @@ +schemes: + # Tokyo Night theme, based on both: + # https://github.com/ghifarit53/tokyonight.vim + # https://github.com/enkia/tokyo-night-vscode-theme + tokyo-night: &tokyo-night + # Default colors + primary: + background: '0x1a1b26' + foreground: '0xa9b1d6' + + # Normal colors + normal: + black: '0x32344a' + red: '0xf7768e' + green: '0x9ece6a' + yellow: '0xe0af68' + blue: '0x7aa2f7' + magenta: '0xad8ee6' + cyan: '0x449dab' + white: '0x787c99' + + # Bright colors + bright: + black: '0x444b6a' + red: '0xff7a93' + green: '0xb9f27c' + yellow: '0xff9e64' + blue: '0x7da6ff' + magenta: '0xbb9af7' + cyan: '0x0db9d7' + white: '0xacb0d0' + + tokyo-night-storm: &tokyo-night-storm + # Default colors + primary: + background: '0x24283b' + foreground: '0xa9b1d6' + + # Normal colors + normal: + black: '0x32344a' + red: '0xf7768e' + green: '0x9ece6a' + yellow: '0xe0af68' + blue: '0x7aa2f7' + magenta: '0xad8ee6' + cyan: '0x449dab' + white: '0x9699a8' + + # Bright colors + bright: + black: '0x444b6a' + red: '0xff7a93' + green: '0xb9f27c' + yellow: '0xff9e64' + blue: '0x7da6ff' + magenta: '0xbb9af7' + cyan: '0x0db9d7' + white: '0xacb0d0'