AstroNvim / astrotheme

The default colorscheme used by AstroNvim
https://AstroNvim.com
GNU General Public License v3.0
96 stars 19 forks source link

No Highlight colors? #81

Closed cjauton closed 5 months ago

cjauton commented 1 year ago

It appears that the highlight colors have been removed. Why is this?

Screenshot 2023-08-07 at 12 56 18 AM Screenshot 2023-08-07 at 12 55 15 AM
A-Lamia commented 1 year ago

Yes for now I've changed it to have no highlights until i figure out how i want to handle them with light / dark themes, didn't think it was a big deal there seems to be a lot of popular themes with no highlights and I've been using it with no issue, is there something specific that this is breaking ?

cjauton commented 1 year ago

I see. I don't think its a big deal for now. I know some popular CLI tools like exa make use of the bright versions of distinguishing file types.

A-Lamia commented 1 year ago

ah ok, well this should be resolved sooner then later just have some more important things to take care of then ill be taking a look at terminal :)

Hacksore commented 6 months ago

Since we discussed this on discord figured I'd share it here for others looking for answers. No highlight colors means prettier can't render gray when a file is unchanged and instead renders as black.

image

discord thread: https://discord.com/channels/939594913560031363/1215651848200134666

Hacksore commented 6 months ago

The workaround for prettier, as suggested by @A-Lamia, is just hard code the offending color 😅.

return {
  "astronvim/astrotheme",
  opts = {
    palettes = {
      astrodark = {
        term = {
          bright_black = "#767676",
        }
      },
    },
  }
}