From a7524e6a407ba340fae64c9106a7a40a593fb665 Mon Sep 17 00:00:00 2001 From: indrajit Date: Thu, 28 Mar 2019 12:02:28 +0600 Subject: [PATCH] added falcon theme #2 --- README.md | 9 ++++++++- falcon.yml | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 falcon.yml diff --git a/README.md b/README.md index bd969ef..ad88e30 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,12 @@ [![GitHub pull requests](https://img.shields.io/github/issues-pr/eendroroy/alacritty-theme.svg)](https://github.com/eendroroy/alacritty-theme/pulls) [![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/eendroroy/alacritty-theme.svg)](https://github.com/eendroroy/alacritty-theme/pulls?q=is%3Apr+is%3Aclosed) +This repo lists color schemes for `alacritty` + +- collected from various sources +- converted from other terminal emulator themes +- created from vim or emacs color schemes. + **How to apply?** Copy the content of `yaml` file in the `colors` section into `~/.config/alacritty/alacritty.yml` file. ## Color Schemes @@ -18,6 +24,7 @@ - challenger_deep - darcula - dracula +- falcon - gruvbox_dark - gruvbox_light - hyper @@ -33,8 +40,8 @@ - solarized_light - taerminal - terminal_app -- tomorrow_night_bright - tomorrow_night +- tomorrow_night_bright - wombat - xterm diff --git a/falcon.yml b/falcon.yml new file mode 100644 index 0000000..487b252 --- /dev/null +++ b/falcon.yml @@ -0,0 +1,38 @@ +# falcon colorscheme for alacritty +# by fenetikm, https://github.com/fenetikm/falcon +colors: + # Default colors + primary: + background: '0x020221' + foreground: '0xb4b4b9' + + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: '0x020221' + cursor: '0xffe8c0' + + # Normal colors + normal: + black: '0x000004' + red: '0xff3600' + green: '0x718e3f' + yellow: '0xffc552' + blue: '0x635196' + magenta: '0xff761a' + cyan: '0x34bfa4' + white: '0xb4b4b9' + + # Bright colors + bright: + black: '0x020221' + red: '0xff8e78' + green: '0xb1bf75' + yellow: '0xffd392' + blue: '0x99a4bc' + magenta: '0xffb07b' + cyan: '0x8bccbf' + white: '0xf8f8ff' + +# Use custom cursor colors. If true, display the cursor in the cursor.foreground +# and cursor.background colors, otherwise invert the colors of the cursor. +custom_cursor_colors: true