Skip to content

Commit

Permalink
fix(dap): make breakpoints and UI buttons more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
thesimonho committed Jan 21, 2025
1 parent 74f9110 commit bf4a8a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
6 changes: 0 additions & 6 deletions lua/kanagawa-paper/highlights/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,6 @@ function M.setup(colors, opts)
-- WinBarNC Window bar of not-current windows.
WinBarNC = { fg = theme.ui.fg_dim, bg = opts.dimInactive and theme.ui.bg_dim or "NONE" },

-- SignColumnSB = { link = "SignColumn" },
-- NormalSB = { link = "Normal" },

debugPC = { bg = theme.diff.delete },
debugBreakpoint = { fg = theme.syn.special1, bg = theme.ui.bg_gutter },

DiagnosticError = { fg = theme.diag.error },
DiagnosticWarn = { fg = theme.diag.warning },
DiagnosticInfo = { fg = theme.diag.info },
Expand Down
9 changes: 5 additions & 4 deletions lua/kanagawa-paper/highlights/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -150,25 +150,26 @@ function M.setup(colors, opts)
-- Dap-UI
DapUIScope = { link = "Special" },
DapUIType = { link = "Type" },
DapUIModifiedValue = { fg = theme.syn.special1, bold = true },
DapUIModifiedValue = { fg = theme.vcs.changed, bold = true },
DapUIDecoration = { fg = theme.ui.float.fg_border },
DapUIThread = { fg = theme.syn.identifier },
DapUIStoppedThread = { fg = theme.syn.special1 },
DapUISource = { fg = theme.syn.special2 },
DapUILineNumber = { fg = theme.syn.special1 },
DapUIFloatBorder = { fg = theme.ui.float.fg_border },
DapUIWatchesEmpty = { fg = theme.diag.error },
DapUIWatchesEmpty = { fg = theme.diag.warning },
DapUIWatchesValue = { fg = theme.syn.identifier },
DapUIWatchesError = { fg = theme.diag.error },
DapUIBreakpointsPath = { link = "Directory" },
DapUIBreakpointsInfo = { fg = theme.diag.info },
DapUIBreakpointsCurrentLine = { fg = theme.syn.identifier, bold = true },
DapUIBreakpointsWarn = { fg = theme.diag.warning },
DapUIBreakpointsCurrentLine = { fg = theme.diag.error, bold = true },
DapUIBreakpointsDisabledLine = { link = "Comment" },
DapUIStepOver = { fg = theme.syn.special1 },
DapUIStepInto = { fg = theme.syn.special1 },
DapUIStepBack = { fg = theme.syn.special1 },
DapUIStepOut = { fg = theme.syn.special1 },
DapUIStop = { fg = theme.diag.error },
DapUIStop = { fg = theme.syn.special2 },
DapUIPlayPause = { fg = theme.syn.string },
DapUIRestart = { fg = theme.syn.string },
DapUIUnavailable = { fg = theme.syn.comment },
Expand Down

0 comments on commit bf4a8a9

Please sign in to comment.