fix search color, attr color

This commit is contained in:
Max Miliano Del Canto Quezada 2022-04-29 16:55:09 -03:00
parent 368d4a8115
commit 73239bd035
5 changed files with 13 additions and 13 deletions

View file

@ -13,7 +13,7 @@ palette:
popup_back: '#073642'
search_orange: '#cb4b16'
search_blue: '#268bd2'
search_blue: '#073642'
white: '#fdf8e3'
gray: '#93a1a1'
dark_gray: '#3e3e3e'
@ -23,7 +23,7 @@ palette:
tree_gray: '#073642'
blue: '#268bd2'
vivid_blue: '#268bd2'
dark_blue: '#268bd2'
dark_blue: '#073642'
folder_blue: '#268bd2'
light_blue: '#2aa198'
green: '#859900'
@ -92,7 +92,7 @@ highlights:
CursorColumn: '- dark'
ColorColumn: '- dark'
NormalFloat: '- dark'
Visual: '- ui_blue'
Visual: '- alt_bg'
VisualNOS: '- alt_bg'
WarningMsg: 'error_red bg'
# DiffText: '- -'
@ -171,10 +171,10 @@ Treesitter:
TSConstructor: 'cyan'
TSType: 'yellow'
TSTypeBuiltin: 'cyan'
TSConditional: 'purple'
TSException: 'purple'
TSConditional: 'magenta'
TSException: 'magenta'
TSInclude: 'orange'
TSKeywordReturn: 'purple'
TSKeywordReturn: 'magenta'
TSKeyword: 'blue'
TSKeywordFunction: 'blue'
TSLabel: 'light_blue'
@ -192,7 +192,7 @@ Treesitter:
TSMethod: 'blue'
TSConstMacro: 'cyan'
TSFuncMacro: 'blue'
TSVariable: 'cyan'
TSVariable: 'white'
TSVariableBuiltin: 'cyan'
TSProperty: 'cyan'
TSOperator: 'red'
@ -203,7 +203,7 @@ Treesitter:
TSText: 'fg'
TSPunctDelimiter: 'red -'
TSTagDelimiter: 'gray'
TSTagAttribute: 'light_blue'
TSTagAttribute: 'yellow'
TSPunctBracket: 'fg -'
TSPunctSpecial: 'blue'
TSString: 'green'
@ -389,7 +389,7 @@ IndentBlankline:
IndentBlanklineSpaceCharBlankline: 'info_yellow'
Dashboard:
DashboardHeader: 'blue'
DashboardHeader: 'yellow'
DashboardCenter: 'purple'
DashboardFooter: 'cyan'

View file

@ -1,5 +1,5 @@
local Dashboard = {
DashboardHeader = {fg = C.blue, },
DashboardHeader = {fg = C.yellow, },
DashboardCenter = {fg = C.purple, },
DashboardFooter = {fg = C.cyan, },
}

View file

@ -37,7 +37,7 @@ local Treesitter = {
TSText = {fg = C.fg, },
TSPunctDelimiter = {fg = C.red, },
TSTagDelimiter = {fg = C.gray, },
TSTagAttribute = {fg = C.light_blue, },
TSTagAttribute = {fg = C.yellow, },
TSPunctBracket = {fg = C.fg, },
TSPunctSpecial = {fg = C.blue, },
TSString = {fg = C.green, },

View file

@ -24,7 +24,7 @@ local highlights = {
CursorColumn = {bg = C.dark, },
ColorColumn = {bg = C.dark, },
NormalFloat = {bg = C.dark, },
Visual = {bg = C.ui_blue, },
Visual = {bg = C.alt_bg, },
VisualNOS = {bg = C.alt_bg, },
WarningMsg = {fg = C.error_red, bg = C.bg, },
DiffAdd = {fg = C.alt_bg, bg = C.sign_add, },

View file

@ -6,7 +6,7 @@ local colors = {
accent = "#839496",
popup_back = "#073642",
search_orange = "#cb4b16",
search_blue = "#268bd2",
search_blue = "#073642",
white = "#fdf8e3",
gray = "#93a1a1",
dark_gray = "#3e3e3e",