Update color settings for UI elements and completion menu
- Added darker cyan for UI elements in diagnostics. - Adjusted FloatBorder and Pmenu colors for better visibility.
This commit is contained in:
parent
ad110b0a4a
commit
341236833d
5 changed files with 18 additions and 9 deletions
|
|
@ -104,6 +104,7 @@ M.diag_error = {'#ff0066', 197, 'red'} -- Hot pink-red (screams "error!")
|
|||
M.diag_warn = {'#ff6600', 202, 'red'} -- Fluorescent orange (warnings)
|
||||
M.diag_info = {'#00ccff', 45, 'cyan'} -- Bright fluorescent cyan (info - more prominent)
|
||||
M.diag_hint = {'#66e0ff', 81, 'cyan'} -- Softer fluorescent cyan (hint - less prominent)
|
||||
M.diag_hint_dark = {'#0099cc', 38, 'cyan'} -- Darker cyan for UI elements (readable on white)
|
||||
|
||||
-- LSP Diagnostic backgrounds - Light tinted versions for highlighting code
|
||||
M.bg_diag_error = {'#ffe6f0', 224, 'white'} -- Very light pink (for error backgrounds)
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ return {
|
|||
|
||||
Normal = { fg = c.fg, bg = c.bg },
|
||||
NormalFloat = { fg = c.fg, bg = c.bg },
|
||||
FloatBorder = { fg = c.diag_hint, bg = c.bg },
|
||||
FloatBorder = { fg = c.diag_hint_dark, bg = c.bg },
|
||||
|
||||
-- ============================================================================
|
||||
-- Cursor & Line Highlighting
|
||||
|
|
@ -66,11 +66,12 @@ return {
|
|||
-- Popup Menu (Completion)
|
||||
-- ============================================================================
|
||||
|
||||
Pmenu = { fg = c.fg, bg = c.bg_ui },
|
||||
PmenuSel = { fg = c.fg_strong, bg = c.bg_ui, bold = true },
|
||||
PmenuSbar = 'Pmenu',
|
||||
PmenuThumb = 'Pmenu',
|
||||
WildMenu = { fg = c.fg_strong, bg = c.bg_ui, bold = true },
|
||||
Pmenu = { fg = c.diag_hint_dark, bg = c.bg },
|
||||
PmenuSel = { fg = c.fg_strong, bg = c.bg_hl, bold = true },
|
||||
PmenuSbar = { fg = c.NONE, bg = c.bg_hl },
|
||||
PmenuThumb = { fg = c.NONE, bg = c.fg_weaker },
|
||||
PmenuBorder = { fg = c.diag_hint_dark, bg = c.bg },
|
||||
WildMenu = { fg = c.fg_strong, bg = c.bg_hl, bold = true },
|
||||
|
||||
-- ============================================================================
|
||||
-- Folds
|
||||
|
|
|
|||
|
|
@ -63,10 +63,11 @@ return {
|
|||
-- ============================================================================
|
||||
|
||||
-- Menu
|
||||
CmpItemMenu = { fg = c.fg_weak, italic = true },
|
||||
CmpItemAbbr = { fg = c.fg },
|
||||
CmpItemAbbrMatch = { fg = c.primary, bold = true },
|
||||
CmpItemAbbrMatchFuzzy = { fg = c.primary_weak },
|
||||
CmpItemAbbrDeprecated = { fg = c.fg_weak, strikethrough = true },
|
||||
CmpItemMenu = { fg = c.fg_weak, italic = true },
|
||||
|
||||
-- Kind icons/labels
|
||||
CmpItemKindDefault = { fg = c.fg },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue