@@ -2,16 +2,17 @@ local colors = require("base46").get_theme_tb "base_30"
2
2
local mix_col = require (" base46.colors" ).mix
3
3
4
4
local highligths = {
5
+ TinyInlineDiagnosticVirtualTextArrow = { fg = colors .white , bg = colors .black },
6
+
5
7
TinyInlineDiagnosticVirtualTextError = { fg = colors .red , bg = mix_col (colors .red , colors .black , 75 ) },
6
8
TinyInlineDiagnosticVirtualTextWarn = { fg = colors .yellow , bg = mix_col (colors .yellow , colors .black , 75 ) },
7
9
TinyInlineDiagnosticVirtualTextInfo = { fg = colors .green , bg = mix_col (colors .green , colors .black , 75 ) },
8
10
TinyInlineDiagnosticVirtualTextHint = { fg = colors .purple , bg = mix_col (colors .purple , colors .black , 75 ) },
9
- TinyInlineDiagnosticVirtualTextArrow = { fg = colors .white , bg = colors .black },
10
11
11
12
TinyInlineInvDiagnosticVirtualTextError = { fg = mix_col (colors .red , colors .black , 75 ), bg = colors .black },
12
13
TinyInlineInvDiagnosticVirtualTextWarn = { fg = mix_col (colors .yellow , colors .black , 75 ), bg = colors .black },
13
14
TinyInlineInvDiagnosticVirtualTextInfo = { fg = mix_col (colors .green , colors .black , 75 ), bg = colors .black },
14
- TinyInlineInvDiagnosticVirtualTextHint = { fg = mix_col (colors .white , colors .black , 75 ), bg = colors .black },
15
+ TinyInlineInvDiagnosticVirtualTextHint = { fg = mix_col (colors .purple , colors .black , 75 ), bg = colors .black },
15
16
}
16
17
17
18
return highligths
0 commit comments