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