You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Thanks to Diff color add DiffAdd, DiffDelete and DiffChange. But it is still missing DiffText.
Describe the solution you'd like
I use this web site to mix the color.
For dark background, I mix background #282828 and yellow #fabd2f with the ratio 2:1. This generates #6f5a2b
For light background, I mix background #fbf1c7 and yellow #b57614 with the ratio 2:1. This generates #e3c78b
Additional context
The result of dark background
The result of light background
The text was updated successfully, but these errors were encountered:
The problem is when the group already has its own fg and bg, like
DiffText. I want to override the bg color (see ellisonleao#314) but still retain
the fg color, which is the syntax color provided by treesitter or LSP.
```lua
require("gruvbox").setup({
overrides = {
DiffText = {bg = "#6f5a2b"}
}
})
vim.cmd("colorscheme gruvbox")
```
The
[DiffText](https://github.com/ellisonleao/gruvbox.nvim/blob/main/lua/gruvbox.lua#L366)
has the fg color `bg0` and overrides doesn't clear fg color for me. So
I can't get the syntax color provided by treesitter and LSP.
Is your feature request related to a problem? Please describe.
Thanks to Diff color add
DiffAdd
,DiffDelete
andDiffChange
. But it is still missingDiffText
.Describe the solution you'd like
I use this web site to mix the color.
For dark background, I mix background
#282828
and yellow#fabd2f
with the ratio2:1
. This generates#6f5a2b
For light background, I mix background
#fbf1c7
and yellow#b57614
with the ratio2:1
. This generates#e3c78b
Additional context
![image](https://private-user-images.githubusercontent.com/58657914/293034348-2667d7b3-6e10-4d1c-af33-6e0c48f152c4.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0ODA2MjksIm5iZiI6MTczOTQ4MDMyOSwicGF0aCI6Ii81ODY1NzkxNC8yOTMwMzQzNDgtMjY2N2Q3YjMtNmUxMC00ZDFjLWFmMzMtNmUwYzQ4ZjE1MmM0LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEzVDIwNTg0OVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTU4ODgyOTcwZDM0ZWY2OWNhY2NkNzU2NzIzYWQwZDlkNTgxYmUxNDQwM2Y2NTEwMjg1NWM2ZGJjNjk2ZGU5MTMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.TIJwzK1f1uZhCa8Ezi1S7MqLQkJE0X7LVGMvCithMHs)
The result of dark background
The result of light background
![image](https://private-user-images.githubusercontent.com/58657914/293034448-68d27317-7358-46bd-9fe3-02a4a8a1f6f3.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0ODA2MjksIm5iZiI6MTczOTQ4MDMyOSwicGF0aCI6Ii81ODY1NzkxNC8yOTMwMzQ0NDgtNjhkMjczMTctNzM1OC00NmJkLTlmZTMtMDJhNGE4YTFmNmYzLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEzVDIwNTg0OVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTVmM2MyMWUxYWZlYTY0OTU0NTE2ZTMzZDU5YzQ3MjllNjZkOGJhZmEwZjIwMWYxMDM5YzAyMGU0MTgwNDQ4NGImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.gOzn9t7Yix_e99Q-GIWAYx8uUZ_zN3NVuDErq4clYFk)
The text was updated successfully, but these errors were encountered: