diff options
| author | krolxon <krolyxon@tutanota.com> | 2025-08-04 16:36:32 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2025-08-04 16:36:32 +0530 |
| commit | 1b1f064cee580af3202c8be775255dcb64f56b1a (patch) | |
| tree | e819848a275cf3c473f907719543f40dc846db25 /.config/alacritty/alacritty.toml | |
| parent | 7cbc575dbd33a9b5a7e1d530b974bc9971a70cef (diff) | |
catpuccin: alacritty, hyprlock, hyprland, screenshot script, rofi
Diffstat (limited to '.config/alacritty/alacritty.toml')
| -rw-r--r-- | .config/alacritty/alacritty.toml | 99 |
1 files changed, 75 insertions, 24 deletions
diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index 58f427c..8dea790 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -5,30 +5,81 @@ TERM = "xterm-256color" [colors] draw_bold_text_with_bright_colors = true -[colors.bright] -black = "#7f7f7f" -blue = "#5c5cff" -cyan = "#00ffff" -green = "#00ff00" -magenta = "#ff00ff" -red = "#ff0000" -white = "#ffffff" -yellow = "#ffff00" - -[colors.normal] -black = "#000000" -blue = "#0000ee" -cyan = "#00cdcd" -green = "#00cd00" -magenta = "#cd00cd" -red = "#cd0000" -white = "#e5e5e5" -yellow = "#cdcd00" - [colors.primary] -background = "#000000" -foreground = "#E5E5E5" - +background = '#1E1E2E' # base +foreground = '#CDD6F4' # text +# Bright and dim foreground colors +dim_foreground = '#CDD6F4' # text +bright_foreground = '#CDD6F4' # text + +# Cursor colors +[colors.cursor] +text = '#1E1E2E' # base +cursor = '#F5E0DC' # rosewater + +[colors.vi_mode_cursor] +text = '#1E1E2E' # base +cursor = '#B4BEFE' # lavender + +# Search colors +[colors.search.matches] +foreground = '#1E1E2E' # base +background = '#A6ADC8' # subtext0 + +[colors.search.focused_match] +foreground = '#1E1E2E' # base +background = '#A6E3A1' # green + +[colors.footer_bar] +foreground = '#1E1E2E' # base +background = '#A6ADC8' # subtext0 + +# Keyboard regex hints +[colors.hints.start] +foreground = '#1E1E2E' # base +background = '#F9E2AF' # yellow + +[colors.hints.end] +foreground = '#1E1E2E' # base +background = '#A6ADC8' # subtext0 + +# Selection colors +[colors.selection] +text = '#1E1E2E' # base +background = '#F5E0DC' # rosewater + +# Normal colors +[colors.normal] +black = '#45475A' # surface1 +red = '#F38BA8' # red +green = '#A6E3A1' # green +yellow = '#F9E2AF' # yellow +blue = '#89B4FA' # blue +magenta = '#F5C2E7' # pink +cyan = '#94E2D5' # teal +white = '#BAC2DE' # subtext1 + +# Bright colors +[colors.bright] +black = '#585B70' # surface2 +red = '#F38BA8' # red +green = '#A6E3A1' # green +yellow = '#F9E2AF' # yellow +blue = '#89B4FA' # blue +magenta = '#F5C2E7' # pink +cyan = '#94E2D5' # teal +white = '#A6ADC8' # subtext0 + +# Dim colors +[colors.dim] +black = '#45475A' # surface1 +red = '#F38BA8' # red +green = '#A6E3A1' # green +yellow = '#F9E2AF' # yellow +blue = '#89B4FA' # blue +magenta = '#F5C2E7' # pink +cyan = '#94E2D5' # teal +white = '#BAC2DE' # subtext1 [cursor] style = "Block" unfocused_hollow = true @@ -38,7 +89,7 @@ persistent_logging = false render_timer = false [font] -size = 7.5 +size = 11 [font.bold] family = "JetBrainsMono Nerd Font" |
