Files
dotfiles/config/alacritty/alacritty.toml
T

50 lines
1.1 KiB
TOML

[general]
# import = [ "~/.config/alacritty/dank-theme.toml" ]
[font]
size = 13.5
offset = { x = 0, y = 3 }
normal = { family = "JetBrainsMono Nerd Font", style = "Regular" }
[window]
padding.x = 10
padding.y = 10
decorations = "None"
[cursor]
style.shape = "Beam"
style.blinking = "Always"
# THEME
[colors.primary]
background = "#181818"
foreground = "#E4E4E4"
[colors.cursor]
text = "#141415"
cursor = "#cdcdcd"
[colors.selection]
text = "#cdcdcd"
background = "#333738"
[colors.normal]
black = "#333333" # punctuation / muted bg tone
red = "#b38f8f" # invalid
green = "#98c379" # string
yellow = "#DBAD49" # keyword / storage / self
blue = "#819aff" # number
magenta = "#939799" # type / constant
cyan = "#678E87" # annotation
white = "#dddddd" # default / operator / func
[colors.bright]
black = "#af9661" # comment
red = "#b38f8f" # invalid (same, no bright variant)
green = "#98c379" # string (same)
yellow = "#DBAD49" # keyword bright
blue = "#8fa3b3" # link
magenta = "#868165" # punctuation
cyan = "#678E87" # annotation (same)
white = "#dddddd" # default bright