1
0

refactor: Update Alacritty theme and settings

• Switched theme from Catppuccin Mocha to Tokyo Night.
 • Updated font to MesloLGSDZ Nerd Font at size 10.5.
 • Adjusted window opacity and padding.
 • Removed deleted Catppuccin theme file.
 • Added themes as a subproject commit.
This commit is contained in:
2025-12-05 11:36:58 -03:00
parent 3b99f281cc
commit a9cd3d5cff
4 changed files with 39 additions and 90 deletions

31
alacritty/alacritty.toml Normal file → Executable file
View File

@@ -3,40 +3,21 @@ TERM = "xterm-256color"
[general]
import = [
"~/.config/alacritty/catppuccin-mocha.toml"
"~/.config/alacritty/tokyonight_night.toml",
# "~/.config/alacritty/themes/themes/tokyo_night_enhanced.toml"
]
[font]
size = 12
[font.bold]
family = "IosevkaTerm Nerd Font"
style = "Bold"
[font.italic]
family = "IosevkaTerm Nerd Font"
style = "Italic"
size = 10.5
[font.normal]
family = "IosevkaTerm Nerd Font"
style = "Light"
family = "MesloLGSDZ Nerd Font"
[terminal.shell]
args = ["-l", "-c", "tmux"]
program = "/bin/zsh"
[window]
opacity = 0.92
padding = { x = 2, y = 2}
opacity = 0.98
padding = { x = 2, y = 1}
dynamic_padding = true
decorations = "None"
dynamic_title = true
[cursor]
style = { shape = "Beam", blinking = "On" } # Default: shape = "Block", blinking = "Off"
blink_interval = 500
blink_timeout = 30
unfocused_hollow = true
thickness = 0.15

View File

@@ -1,65 +0,0 @@
[colors.primary]
background = "#1e1e2e"
foreground = "#cdd6f4"
dim_foreground = "#7f849c"
bright_foreground = "#cdd6f4"
[colors.cursor]
text = "#1e1e2e"
cursor = "#f5e0dc"
[colors.vi_mode_cursor]
text = "#1e1e2e"
cursor = "#b4befe"
[colors.search.matches]
foreground = "#1e1e2e"
background = "#a6adc8"
[colors.search.focused_match]
foreground = "#1e1e2e"
background = "#a6e3a1"
[colors.footer_bar]
foreground = "#1e1e2e"
background = "#a6adc8"
[colors.hints.start]
foreground = "#1e1e2e"
background = "#f9e2af"
[colors.hints.end]
foreground = "#1e1e2e"
background = "#a6adc8"
[colors.selection]
text = "#1e1e2e"
background = "#f5e0dc"
[colors.normal]
black = "#45475a"
red = "#f38ba8"
green = "#a6e3a1"
yellow = "#f9e2af"
blue = "#89b4fa"
magenta = "#f5c2e7"
cyan = "#94e2d5"
white = "#bac2de"
[colors.bright]
black = "#585b70"
red = "#f38ba8"
green = "#a6e3a1"
yellow = "#f9e2af"
blue = "#89b4fa"
magenta = "#f5c2e7"
cyan = "#94e2d5"
white = "#a6adc8"
[[colors.indexed_colors]]
index = 16
color = "#fab387"
[[colors.indexed_colors]]
index = 17
color = "#f5e0dc"

1
alacritty/themes Submodule

Submodule alacritty/themes added at 59a96ef4c7

View File

@@ -0,0 +1,32 @@
# -----------------------------------------------------------------------------
# TokyoNight Alacritty Colors
# Theme: Tokyo Night
# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/alacritty/tokyonight_night.toml
# -----------------------------------------------------------------------------
# Default colors
[colors.primary]
background = '#1a1b26'
foreground = '#c0caf5'
# Normal colors
[colors.normal]
black = '#15161e'
red = '#f7768e'
green = '#9ece6a'
yellow = '#e0af68'
blue = '#7aa2f7'
magenta = '#bb9af7'
cyan = '#7dcfff'
white = '#a9b1d6'
# Bright colors
[colors.bright]
black = '#414868'
red = '#ff899d'
green = '#9fe044'
yellow = '#faba4a'
blue = '#8db0ff'
magenta = '#c7a9ff'
cyan = '#a4daff'
white = '#c0caf5'