Skip to content

Commit

Permalink
fix: color search,visual,telescope,winseparator
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Miliano committed Feb 22, 2023
1 parent ec72f5c commit ce004ce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lua/solarized/themes/vscode_theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ local function vscode_theme(solarized, chromatic)
TabLine = { fg = colors.fg, bg = colors.bg_alt, sp = colors.fg },
TabLineSel = { fg = colors.secondary, bg = colors.bg_alt_invert, sp = colors.fg, reverse = true },
TabLineFill = { fg = colors.fg, bg = colors.bg_alt, sp = colors.fg },
Visual = { fg = colors.green, bg = blend(colors.green, colors.bg, 0.15) },
Visual = { fg = colors.cyan, bg = blend(colors.cyan, colors.bg, 0.15) },
VisualNOS = { reverse = true },
Search = { fg = colors.green, bg = blend(colors.green, colors.bg, 0.15) },
IncSearch = { fg = colors.green, bg = blend(colors.green, colors.bg, 0.15), italic = true, bold = true },
Search = { fg = colors.cyan, bg = blend(colors.cyan, colors.bg, 0.15) },
IncSearch = { fg = colors.cyan, bold = true },
CurSearch = { link = 'IncSearch' },
Folded = { fg = colors.fg, bg = colors.bg_alt, sp = colors.bg },
FoldColumn = { fg = colors.fg, bg = colors.bg_alt },
ColorColumn = { bg = colors.bg_alt },
SignColumn = { fg = colors.fg },
WinSeparator = { fg = colors.green, bold = true },
WinSeparator = { fg = colors.cyan },
VertSplit = { link = 'WinSeparator' },
FloatBorder = { link = 'WinSeparator' },
SpellBad = { sp = colors.error, undercurl = true },
Expand Down Expand Up @@ -473,7 +473,7 @@ local function vscode_theme(solarized, chromatic)
TelescopePromptBorder = { default = true, link = 'TelescopeBorder' },
TelescopeResultsBorder = { default = true, link = 'TelescopeBorder' },
TelescopePreviewBorder = { default = true, link = 'TelescopeBorder' },
TelescopeTitle = { default = true, fg = colors.green, reverse = true },
TelescopeTitle = { default = true, fg = colors.cyan, reverse = true },
TelescopePromptTitle = { default = true, link = 'TelescopeTitle' },
TelescopeResultsTitle = { default = true, link = 'TelescopeTitle' },
TelescopePreviewTitle = { default = true, link = 'TelescopeTitle' },
Expand Down

0 comments on commit ce004ce

Please sign in to comment.