mirror of
https://github.com/alacritty/alacritty-theme
synced 2024-11-16 19:51:03 +01:00
Add alacritty's default theme pre-0.13
This commit is contained in:
parent
3825542aff
commit
b7a59c92fd
3 changed files with 46 additions and 1 deletions
|
@ -39,6 +39,7 @@ configuration file.
|
|||
| **_afterglow_**<br>[source](https://github.com/YabataDesign/afterglow-theme) | ![base16_default_dark](images/afterglow.png) |
|
||||
| **_alabaster_**<br>[source](https://github.com/tonsky/vscode-theme-alabaster) | ![alabaster](images/alabaster.png) |
|
||||
| **_alabaster_dark_**<br>[source](https://github.com/gargakshit/vscode-theme-alabaster-dark) | ![alabaster_dark](images/alabaster_dark.png) |
|
||||
| **_alacritty_0_12_**<br>[source](https://github.com/alacritty/alacritty/blob/v0.12.3/alacritty/src/config/color.rs) | ![alacritty_0_12](images/alacritty_0_12.png) |
|
||||
| **_argonaut_**<br>[source](https://github.com/pwaleczek/Argonaut-theme) | ![base16_default_dark](images/argonaut.png) |
|
||||
| **_atom_one_light_**<br>[source](https://github.com/dexpota/kitty-themes/blob/master/themes/AtomOneLight.conf) | ![atom_one_light](images/atom_one_light.png) |
|
||||
| **_ayu_dark_**<br>[source](https://github.com/ayu-theme/ayu-colors) | ![ayu_dark](images/ayu_dark.png) |
|
||||
|
@ -60,7 +61,7 @@ configuration file.
|
|||
| **_cyber_punk_neon_**<br>[source](https://github.com/Roboron3042/Cyberpunk-Neon) | ![cyber_punk_neon](images/cyber_punk_neon.png) |
|
||||
| **_darcula_**<br>[source](https://draculatheme.com) | ![darcula](images/darcula.png) |
|
||||
| **_dark_pastels_**<br>[source](https://invent.kde.org/utilities/konsole/-/blob/master/data/color-schemes/DarkPastels.colorscheme) | ![dark_pastels](images/dark_pastels.png) |
|
||||
| **_deep_space_** | ![depp_space](images/deep_space.png) |
|
||||
| **_deep_space_** | ![depp_space](images/deep_space.png) |
|
||||
| **_doom_one_**<br>[source](https://github.com/hlissner/emacs-doom-themes) | ![doom_one](images/doom_one.png) |
|
||||
| **_dracula_**<br>[source](https://draculatheme.com) | ![dracula](images/dracula.png) |
|
||||
| **_everforest_dark_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_dark](images/everforest_dark.png) |
|
||||
|
|
BIN
images/alacritty_0_12.png
Normal file
BIN
images/alacritty_0_12.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 99 KiB |
44
themes/alacritty_0_12.toml
Normal file
44
themes/alacritty_0_12.toml
Normal file
|
@ -0,0 +1,44 @@
|
|||
# Alacritty's default color scheme pre-0.13 (based on tomorrow_night)
|
||||
# https://github.com/alacritty/alacritty/blob/v0.12.3/alacritty/src/config/color.rs
|
||||
|
||||
[colors.primary]
|
||||
foreground = "#c5c8c6"
|
||||
background = "#1d1f21"
|
||||
|
||||
[colors.normal]
|
||||
black = "#1d1f21"
|
||||
red = "#cc6666"
|
||||
green = "#b5bd68"
|
||||
yellow = "#f0c674"
|
||||
blue = "#81a2be"
|
||||
magenta = "#b294bb"
|
||||
cyan = "#8abeb7"
|
||||
white = "#c5c8c6"
|
||||
|
||||
[colors.bright]
|
||||
black = "#666666"
|
||||
red = "#d54e53"
|
||||
green = "#b9ca4a"
|
||||
yellow = "#e7c547"
|
||||
blue = "#7aa6da"
|
||||
magenta = "#c397d8"
|
||||
cyan = "#70c0b1"
|
||||
white = "#eaeaea"
|
||||
|
||||
[colors.dim]
|
||||
black = "#131415"
|
||||
red = "#864343"
|
||||
green = "#777c44"
|
||||
yellow = "#9e824c"
|
||||
blue = "#556a7d"
|
||||
magenta = "#75617b"
|
||||
cyan = "#5b7d78"
|
||||
white = "#828482"
|
||||
|
||||
[colors.hints]
|
||||
start = { foreground = "#1d1f21", background = "#e9ff5e" }
|
||||
end = { foreground = "#e9ff5e", background = "#1d1f21" }
|
||||
|
||||
[colors.search]
|
||||
matches = { foreground = "#000000", background = "#ffffff" }
|
||||
focused_match = { foreground = "#ffffff", background = "#000000" }
|
Loading…
Reference in a new issue