As the title suggests. I want to have different colors for changed diff text. Currently, I am only able to use one color for changed text. Here is how it looks: <img width="1222" height="302" alt="Image" src="https://github.com/user-attachments/assets/294a6647-b0f0-43dd-871f-33e7305bff9f" /> In the image case, I want the added part on the right to have green text, and the removed part on the left side to have red text. Currently using this setting: ```lua vim.api.nvim_set_hl(0, "DiffChange", { bg = "#5a6e87" }) vim.api.nvim_set_hl(0, "DiffText", { bg = "#a3b7cf", bold = true }) ``` Also, `DiffAdd` and those only works for whole lines that have been added. I am talking about a partial change on a line.