luisiacc / gruvbox-baby

Gruvbox theme for neovim with full 🎄TreeSitter support.
MIT License
397 stars 28 forks source link

Html Tag brackets are not good visible #16

Closed feekApp closed 2 years ago

feekApp commented 2 years ago

Hi when using Treesitter, the HTML tag brackets are not good visible: img

Could you please change on line 132 of theme.lua to the following:

TSTagDelimiter = { fg = c.forest_green },

It will become like: img2

Now the color is set to c.comment.

luisiacc commented 2 years ago

Hi there, sorry for the late comment, I kind of like the color as is currently set, there is a easy way to change it on your own config which is to do this:

local colors = require("gruvbox-baby.colors").config()
vim.g.gruvbox_baby_highlights = {TSTagDelimiter = {fg = colors.forest_green}}

Thank you for your feedback!

feekApp commented 2 years ago

Thnx. Based on your suggestion I've made my own tweaks :-)