diff options
| -rw-r--r-- | alacritty/alacritty.toml | 18 | ||||
| -rw-r--r-- | nvim/init.lua | 2 |
2 files changed, 10 insertions, 10 deletions
diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml index b00e8ea..ab71900 100644 --- a/alacritty/alacritty.toml +++ b/alacritty/alacritty.toml @@ -18,41 +18,41 @@ hide_when_typing = true [colors.primary] -background = "#141415" +background = "#121212" foreground = "#cdd6f4" dim_foreground = "#7f849c" bright_foreground = "#cdd6f4" [colors.cursor] -text = "#141415" +text = "#121212" cursor = "#f5e0dc" [colors.vi_mode_cursor] -text = "#141415" +text = "#121212" cursor = "#b4befe" [colors.search.matches] -foreground = "#141415" +foreground = "#121212" background = "#a6adc8" [colors.search.focused_match] -foreground = "#141415" +foreground = "#121212" background = "#a6e3a1" [colors.footer_bar] -foreground = "#141415" +foreground = "#121212" background = "#a6adc8" [colors.hints.start] -foreground = "#141415" +foreground = "#121212" background = "#f9e2af" [colors.hints.end] -foreground = "#141415" +foreground = "#121212" background = "#a6adc8" [colors.selection] -text = "#141415" +text = "#121212" background = "#f5e0dc" [colors.normal] diff --git a/nvim/init.lua b/nvim/init.lua index 94c3fab..0377a7d 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -83,7 +83,7 @@ end, { desc = "Pick files" }) require("catppuccin").setup { color_overrides = { mocha = { - base = "#141415" + base = "#121212" }, } } |