catppuccin / wezterm

:shell: Soothing pastel theme for WezTerm
MIT License
229 stars 4 forks source link

Clashing colors between Ngrok's output and indexed colors #15

Open OneComputerGuy opened 2 months ago

OneComputerGuy commented 2 months ago

First, love the theme, I use it across all I use.

I ran into an issue with specific commands while using this theme in Wezterm. When using Ngrok, the indexed value for color 16 is used as a background color for the command output however, in all themes, the color is light and clashes with the command's output as seen here:

Catppuccin Latte:

image

Catppuccin Mocha, Macchiato and Frappe:

image

If we manually modify the color on the wezterm config file with the following:

config.color_scheme = "Catppuccin Frappe"
config.colors = {
  indexed = {
    [16] = "#000000",
  }
}

The output shows as expected:

image
mvillafuertem commented 2 months ago

I hit the same issue with a git log format.

Screenshot 2024-08-17 at 00 04 22

thanks to @OneComputerGuy workaround I was able to solve it.

config.colors = {
  indexed = {
    [16] = "#000000",
  }
}
Screenshot 2024-08-17 at 00 05 29