64 lines
1021 B
TOML
64 lines
1021 B
TOML
[font]
|
|
size = 14.0
|
|
|
|
[font.normal]
|
|
family = "Hack Nerd Font Mono"
|
|
style = "Regular"
|
|
|
|
[font.italic]
|
|
family = "Hack Nerd Font Mono"
|
|
style = "Italic"
|
|
|
|
[font.bold_italic]
|
|
family = "Hack Nerd Font Mono"
|
|
style = "Bold Italic"
|
|
|
|
[font.bold]
|
|
family = "Hack Nerd Font Mono"
|
|
style = "Bold"
|
|
|
|
[keyboard]
|
|
bindings = [
|
|
{ key = "t", mods = "Control|Shift", action = "SpawnNewInstance" }
|
|
]
|
|
|
|
# TokyoNight Alacritty Colors
|
|
# Default colors
|
|
[colors.primary]
|
|
background = '#222436'
|
|
foreground = '#c8d3f5'
|
|
|
|
#[colors.cursor]
|
|
#cursor = '#c8d3f5'
|
|
#text = '#222436'
|
|
|
|
# Normal colors
|
|
[colors.normal]
|
|
black = '#1b1d2b'
|
|
red = '#ff757f'
|
|
green = '#c3e88d'
|
|
yellow = '#ffc777'
|
|
blue = '#82aaff'
|
|
magenta = '#c099ff'
|
|
cyan = '#86e1fc'
|
|
white = '#828bb8'
|
|
|
|
# Bright colors
|
|
[colors.bright]
|
|
black = '#444a73'
|
|
red = '#ff757f'
|
|
green = '#c3e88d'
|
|
yellow = '#ffc777'
|
|
blue = '#82aaff'
|
|
magenta = '#c099ff'
|
|
cyan = '#86e1fc'
|
|
white = '#c8d3f5'
|
|
|
|
# Indexed Colors
|
|
[[colors.indexed_colors]]
|
|
index = 16
|
|
color = '#ff966c'
|
|
|
|
[[colors.indexed_colors]]
|
|
index = 17
|
|
color = '#c53b53' |