added falcon theme #2

This commit is contained in:
indrajit 2019-03-28 12:02:28 +06:00
parent 27814ae7e2
commit a7524e6a40
No known key found for this signature in database
GPG key ID: 7D65308546343630
2 changed files with 46 additions and 1 deletions

View file

@ -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

38
falcon.yml Normal file
View file

@ -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