diff options
| author | Mezdelex <59997405+mezdelex@users.noreply.github.com> | 2023-09-20 16:56:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-20 11:56:43 -0300 |
| commit | fc2b7df3d8384e1ba32d0c5d515931f5ea366eb1 (patch) | |
| tree | e7b8a44cd759f870d8f272b959b4cdf08a16269d | |
| parent | e32fa3608f8e94358493ac6b1ff75f0c310b71d1 (diff) | |
| download | gruvbox-fc2b7df3d8384e1ba32d0c5d515931f5ea366eb1.tar.gz gruvbox-fc2b7df3d8384e1ba32d0c5d515931f5ea366eb1.tar.xz | |
changed hl colors (#274)
Co-authored-by: Ellison <ellisonleao@gmail.com>
| -rw-r--r-- | lua/gruvbox/groups.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua index 6b168b1..17d0049 100644 --- a/lua/gruvbox/groups.lua +++ b/lua/gruvbox/groups.lua @@ -999,15 +999,15 @@ M.setup = function() DapUIFloatBorder = { link = "GruvboxAqua" }, DapUILineNumber = { link = "GruvboxYellow" }, DapUIModifiedValue = { link = "GruvboxRed" }, - DapUIPlayPause = { link = "GruvboxGreen" }, - DapUIRestart = { link = "GruvboxGreen" }, + DapUIPlayPause = { fg = colors.green, bg = colors.bg1 }, + DapUIRestart = { fg = colors.green, bg = colors.bg1 }, DapUIScope = { link = "GruvboxBlue" }, DapUISource = { link = "GruvboxFg1" }, - DapUIStepBack = { link = "GruvboxBlue" }, - DapUIStepInto = { link = "GruvboxBlue" }, - DapUIStepOut = { link = "GruvboxBlue" }, - DapUIStepOver = { link = "GruvboxBlue" }, - DapUIStop = { link = "GruvboxRed" }, + DapUIStepBack = { fg = colors.blue, bg = colors.bg1 }, + DapUIStepInto = { fg = colors.blue, bg = colors.bg1 }, + DapUIStepOut = { fg = colors.blue, bg = colors.bg1 }, + DapUIStepOver = { fg = colors.blue, bg = colors.bg1 }, + DapUIStop = { fg = colors.red, bg = colors.bg1 }, DapUIStoppedThread = { link = "GruvboxBlue" }, DapUIThread = { link = "GruvboxBlue" }, DapUIType = { link = "GruvboxOrange" }, |
