Skip to content

Commit

Permalink
fix: vscode_theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Miliano committed Feb 23, 2023
1 parent ce004ce commit b6cd0ff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lua/solarized/themes/vscode_theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ local function vscode_theme(solarized, chromatic)
ErrorMsg = { fg = colors.error, reverse = true },
MatchParen = { fg = colors.red, bg = colors.content, bold = true },
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 },
TabLineSel = { fg = colors.comment, bg = colors.bg_alt_invert, sp = colors.fg, reverse = true },
TabLineFill = { fg = colors.fg, bg = colors.bg_alt, sp = colors.fg },
Visual = { fg = colors.cyan, bg = blend(colors.cyan, colors.bg, 0.15) },
VisualNOS = { reverse = true },
Expand Down Expand Up @@ -66,11 +66,11 @@ local function vscode_theme(solarized, chromatic)
MatchWord = { bold = true },
MatchWordCur = { bold = true },
MatchParenCur = { bold = true },
LineNr = { fg = colors.secondary, bg = colors.bg_alt },
LineNr = { fg = colors.comment, bg = colors.bg_alt },
DiffAdded = { fg = colors.added, reverse = true },
DiffChanged = { fg = colors.changed, reverse = true },
DiffRemoved = { fg = colors.removed, reverse = true },
DiffFile = { fg = colors.secondary },
DiffFile = { fg = colors.comment },
DiffIndexLine = { fg = colors.violet },
Title = { fg = colors.orange, bold = true },
Constant = { fg = colors.cyan },
Expand Down Expand Up @@ -236,7 +236,7 @@ local function vscode_theme(solarized, chromatic)
-- Treesitter - Tags
['@tag'] = { fg = colors.blue },
['@tag.attribute'] = { fg = colors.content },
['@tag.delimiter'] = { fg = colors.secondary },
['@tag.delimiter'] = { fg = colors.comment },

-- Treesitter - Locals
['@definition.constant'] = { link = '@constant' },
Expand Down Expand Up @@ -381,7 +381,7 @@ local function vscode_theme(solarized, chromatic)
TerminalNormal = { link = 'SagaNormal' },

-- CMP KIND
CmpItemAbbrDeprecated = { fg = colors.secondary, strikethrough = true },
CmpItemAbbrDeprecated = { fg = colors.comment, strikethrough = true },
CmpItemAbbrMatch = { fg = colors.yellow, reverse = true },
CmpItemAbbrMatchFuzzy = { fg = colors.yellow, reverse = true },
CmpItemKindFunction = { link = '@function' },
Expand Down Expand Up @@ -496,7 +496,7 @@ local function vscode_theme(solarized, chromatic)
Sneak = { link = 'HopNextKey' },

-- TWILIGHT
Twilight = { fg = solarized:is_not_transparent(colors.secondary) },
Twilight = { fg = solarized:is_not_transparent(colors.comment) },

-- Navic
NavicIconsFile = { fg = colors.blue },
Expand Down

0 comments on commit b6cd0ff

Please sign in to comment.