mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 23:48:16 -07:00
18 lines
668 B
Lua
18 lines
668 B
Lua
local colors = require("base46").get_theme_tb "base_30"
|
|
|
|
return {
|
|
-- LSP References
|
|
LspReferenceText = { fg = colors.darker_black, bg = colors.white },
|
|
LspReferenceRead = { fg = colors.darker_black, bg = colors.white },
|
|
LspReferenceWrite = { fg = colors.darker_black, bg = colors.white },
|
|
|
|
-- Lsp Diagnostics
|
|
DiagnosticHint = { fg = colors.purple },
|
|
DiagnosticError = { fg = colors.red },
|
|
DiagnosticWarn = { fg = colors.yellow },
|
|
DiagnosticInformation = { fg = colors.green },
|
|
LspSignatureActiveParameter = { fg = colors.black, bg = colors.green },
|
|
|
|
RenamerTitle = { fg = colors.black, bg = colors.red },
|
|
RenamerBorder = { fg = colors.red },
|
|
}
|