Skip to content

Commit

Permalink
update pmenu highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
theJian committed Dec 17, 2023
1 parent 6ac149f commit 0b103c9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 19 deletions.
33 changes: 17 additions & 16 deletions lua/moonwalk/palette/light.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ local C = {
primary_alt_dark = '#00a6d2',
primary_alt_light = '#9bdaf1',
primary_alt_lightest = '#e1f3f8',
secondary = '#dd361c',
secondary_darkest = '#801a17',
secondary_dark = '#c22c1f',
secondary_light = '#c4837a',
secondary_lightest = '#f9e0de',
red_bolder = '#dd361c',
red = '#801a17',
red_bold = '#c22c1f',
red_soft = '#c4837a',
red_bg = '#f9e0de',
gold_darkest = '#61330e',
gold_dark = '#965c12',
gold = '#ff9d1e',
Expand All @@ -47,8 +47,8 @@ M.default = {
none = 'NONE',
bg = C.gray_warm_light,
bg2 = C.blue_lighter,
bg_popup = C.blue_lightest,
bg_popup_line = C.primary_alt_light,
bg_popup = C.gray_lightest,
bg_popup_line = C.blue_lightest,
bg_float = C.gray_lightest,
fg = C.primary_darkest,
fg_bold = C.base,
Expand All @@ -63,13 +63,14 @@ M.default = {
blue_bg = C.primary_alt_lightest,
blue_alt = C.primary_alt_darkest,
blue_alt_bold = C.primary_alt_dark,
blue_alt_soft = C.primary_alt_light,
blue_cool = C.blue,
blue_cool_bold = C.blue_light,
red_bolder = C.secondary,
red_bold = C.secondary_dark,
red_soft = C.secondary_light,
red = C.secondary_darkest,
red_bg = C.secondary_lightest,
red_bolder = C.red_bolder,
red_bold = C.red_bold,
red_soft = C.red_soft,
red = C.red,
red_bg = C.red_bg,
gold_bolder = C.gold,
gold_bold = C.gold_dark,
gold = C.gold_darkest,
Expand All @@ -83,11 +84,11 @@ M.default = {
purple = C.purple,

diff_add = C.green_lighter,
diff_delete = C.secondary_light,
diff_delete = C.red_soft,
diff_change = C.green_lightest,
diff_text = C.green_lighter,
diff_added = C.green_dark,
diff_removed = C.secondary_darkest,
diff_removed = C.red,

search = C.gold_lightest,
inc_search = C.gold_light,
Expand All @@ -97,8 +98,8 @@ M.default = {
term_black = C.gray_warm_light,
term_bright_black = C.gray,

term_red = C.secondary_darkest,
term_bright_red = C.secondary,
term_red = C.red,
term_bright_red = C.red_bolder,

term_green = C.green_dark,
term_bright_green = C.green,
Expand Down
4 changes: 2 additions & 2 deletions lua/moonwalk/schemes/base.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ local function base(opts, c)

ErrorMsg = { fg = c.red, bg = c.red_bg },
WarningMsg = { fg = c.fg_bold, bg = c.gold_bg },
Question = { fg = c.fg_bold, bg = c.blue_bg },
Question = { fg = c.fg_bold },

Pmenu = { fg = c.none, bg = c.bg_popup },
PmenuSel = { fg = c.fg_bold, bg = c.bg_popup_line, bold = true, blend = 0 },
PmenuSel = { fg = c.none, bg = c.bg_popup_line, bold = true, blend = 0 },
PmenuSbar = { fg = c.none, bg = c.bg_popup },
PmenuThumb = { fg = c.none, bg = c.red_bold, blend = 0 },
PmenuKind = { fg = c.fg_softer },
Expand Down
2 changes: 1 addition & 1 deletion lua/moonwalk/schemes/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ local function treesitter(opts, c)
['@symbol'] = { fg = c.gold }, -- symbols or atoms

-- text
['@text'] = { link = 'Normal' }, -- non-structured text
['@text'] = { fg = c.fg }, -- non-structured text
['@text.strong'] = { fg = c.fg, bold = true }, -- bold text
['@text.emphasis'] = { fg = c.blue }, -- text with emphasis
['@text.underline'] = { link = 'Underlined' }, -- underlined text
Expand Down

0 comments on commit 0b103c9

Please sign in to comment.