mirror of
https://github.com/alacritty/alacritty-theme
synced 2024-11-16 19:51:03 +01:00
Add hardhacker theme
This commit is contained in:
parent
52ed07a4d3
commit
261b35710d
4 changed files with 61 additions and 0 deletions
|
@ -70,6 +70,7 @@ configuration file.
|
|||
| **_gruvbox_dark_**<br>[source](https://github.com/morhetz/gruvbox) | ![gruvbox_dark](images/gruvbox_dark.png) |
|
||||
| **_gruvbox_light_**<br>[source](https://github.com/morhetz/gruvbox) | ![gruvbox_light](images/gruvbox_light.png) |
|
||||
| **_gruvbox_material_**<br>[source](https://github.com/sainnhe/gruvbox-material) | ![gruvbox_material](images/gruvbox_material.png) |
|
||||
| **_hardhacker_**<br>[source](https://github.com/hardhackerlabs/theme-alacritty) | ![hardhacker](images/hardhacker.png) |
|
||||
| **_high_contrast_** | ![gruvbox_light](images/high_contrast.png) |
|
||||
| **_horizon-dark_**<br>[source](https://github.com/jolaleye/horizon-theme-vscode) | ![horizon-dark](images/horizon-dark.png) |
|
||||
| **_hyper_**<br>[source](https://hyper.is) | ![hyper](images/hyper.png) |
|
||||
|
|
BIN
images/hardhacker.png
Normal file
BIN
images/hardhacker.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 85 KiB |
26
schemes.yaml
26
schemes.yaml
|
@ -697,6 +697,32 @@ schemes:
|
|||
cyan: '0x89b482'
|
||||
white: '0xdfbf8e'
|
||||
|
||||
hardhacker: &hardhacker
|
||||
primary:
|
||||
background: '0x282433'
|
||||
foreground: '0xeee9fc'
|
||||
cursor:
|
||||
text: '0xeee9fc'
|
||||
cursor: '0xeee9fc'
|
||||
normal:
|
||||
black: '0x282433'
|
||||
red: '0xe965a5'
|
||||
green: '0xb1f2a7'
|
||||
yellow: '0xebde76'
|
||||
blue: '0xb1baf4'
|
||||
magenta: '0xe192ef'
|
||||
cyan: '0xb3f4f3'
|
||||
white: '0xeee9fc'
|
||||
bright:
|
||||
black: '0x3f3951'
|
||||
red: '0xe965a5'
|
||||
green: '0xb1f2a7'
|
||||
yellow: '0xebde76'
|
||||
blue: '0xb1baf4'
|
||||
magenta: '0xe192ef'
|
||||
cyan: '0xb3f4f3'
|
||||
white: '0xeee9fc'
|
||||
|
||||
high_contrast: &high_contrast
|
||||
primary:
|
||||
background: '0x444444'
|
||||
|
|
34
themes/hardhacker.yaml
Normal file
34
themes/hardhacker.yaml
Normal file
|
@ -0,0 +1,34 @@
|
|||
# hardhacker colorscheme for alacritty
|
||||
# by xin wu, https://github.com/hardhackerlabs/theme-alacritty
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x282433'
|
||||
foreground: '0xeee9fc'
|
||||
|
||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
||||
cursor:
|
||||
text: '0xeee9fc'
|
||||
cursor: '0xeee9fc'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x282433'
|
||||
red: '0xe965a5'
|
||||
green: '0xb1f2a7'
|
||||
yellow: '0xebde76'
|
||||
blue: '0xb1baf4'
|
||||
magenta: '0xe192ef'
|
||||
cyan: '0xb3f4f3'
|
||||
white: '0xeee9fc'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x3f3951'
|
||||
red: '0xe965a5'
|
||||
green: '0xb1f2a7'
|
||||
yellow: '0xebde76'
|
||||
blue: '0xb1baf4'
|
||||
magenta: '0xe192ef'
|
||||
cyan: '0xb3f4f3'
|
||||
white: '0xeee9fc'
|
Loading…
Reference in a new issue