Add Dracula theme for Alacritty
parent
90af5e813b
commit
9f5a8c5702
|
@ -14,51 +14,65 @@ mouse:
|
||||||
hide_when_typing: true
|
hide_when_typing: true
|
||||||
shell:
|
shell:
|
||||||
program: {{ .homebrew.prefix }}/bin/fish
|
program: {{ .homebrew.prefix }}/bin/fish
|
||||||
|
|
||||||
|
# Dracula theme for Alacritty
|
||||||
|
# https://draculatheme.com/alacritty
|
||||||
|
#
|
||||||
|
# Color palette
|
||||||
|
# https://spec.draculatheme.com
|
||||||
|
#
|
||||||
|
# Template
|
||||||
|
# https://github.com/alacritty/alacritty/blob/master/alacritty.yml
|
||||||
|
|
||||||
colors:
|
colors:
|
||||||
primary:
|
primary:
|
||||||
background: '#2e3440'
|
background: '#282a36'
|
||||||
foreground: '#d8dee9'
|
foreground: '#f8f8f2'
|
||||||
dim_foreground: '#a5abb6'
|
bright_foreground: '#ffffff'
|
||||||
cursor:
|
cursor:
|
||||||
text: '#2e3440'
|
text: CellBackground
|
||||||
cursor: '#d8dee9'
|
cursor: CellForeground
|
||||||
vi_mode_cursor:
|
vi_mode_cursor:
|
||||||
text: '#2e3440'
|
text: CellBackground
|
||||||
cursor: '#d8dee9'
|
cursor: CellForeground
|
||||||
selection:
|
|
||||||
text: CellForeground
|
|
||||||
background: '#4c566a'
|
|
||||||
search:
|
search:
|
||||||
matches:
|
matches:
|
||||||
foreground: CellBackground
|
foreground: '#44475a'
|
||||||
background: '#88c0d0'
|
background: '#50fa7b'
|
||||||
|
focused_match:
|
||||||
|
foreground: '#44475a'
|
||||||
|
background: '#ffb86c'
|
||||||
bar:
|
bar:
|
||||||
background: '#434c5e'
|
background: '#282a36'
|
||||||
foreground: '#d8dee9'
|
foreground: '#f8f8f2'
|
||||||
|
hints:
|
||||||
|
start:
|
||||||
|
foreground: '#282a36'
|
||||||
|
background: '#f1fa8c'
|
||||||
|
end:
|
||||||
|
foreground: '#f1fa8c'
|
||||||
|
background: '#282a36'
|
||||||
|
line_indicator:
|
||||||
|
foreground: None
|
||||||
|
background: None
|
||||||
|
selection:
|
||||||
|
text: CellForeground
|
||||||
|
background: '#44475a'
|
||||||
normal:
|
normal:
|
||||||
black: '#3b4252'
|
black: '#21222c'
|
||||||
red: '#bf616a'
|
red: '#ff5555'
|
||||||
green: '#a3be8c'
|
green: '#50fa7b'
|
||||||
yellow: '#ebcb8b'
|
yellow: '#f1fa8c'
|
||||||
blue: '#81a1c1'
|
blue: '#bd93f9'
|
||||||
magenta: '#b48ead'
|
magenta: '#ff79c6'
|
||||||
cyan: '#88c0d0'
|
cyan: '#8be9fd'
|
||||||
white: '#e5e9f0'
|
white: '#f8f8f2'
|
||||||
bright:
|
bright:
|
||||||
black: '#4c566a'
|
black: '#6272a4'
|
||||||
red: '#bf616a'
|
red: '#ff6e6e'
|
||||||
green: '#a3be8c'
|
green: '#69ff94'
|
||||||
yellow: '#ebcb8b'
|
yellow: '#ffffa5'
|
||||||
blue: '#81a1c1'
|
blue: '#d6acff'
|
||||||
magenta: '#b48ead'
|
magenta: '#ff92df'
|
||||||
cyan: '#8fbcbb'
|
cyan: '#a4ffff'
|
||||||
white: '#eceff4'
|
white: '#ffffff'
|
||||||
dim:
|
|
||||||
black: '#373e4d'
|
|
||||||
red: '#94545d'
|
|
||||||
green: '#809575'
|
|
||||||
yellow: '#b29e75'
|
|
||||||
blue: '#68809a'
|
|
||||||
magenta: '#8c738c'
|
|
||||||
cyan: '#6d96a5'
|
|
||||||
white: '#aeb3bb'
|
|
||||||
|
|
Loading…
Reference in New Issue