mirror of https://github.com/gabehf/base46.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
28 lines
1.0 KiB
local colors = require("base46").get_theme_tb "base_30"
|
|
|
|
return {
|
|
TroubleCount = { fg = colors.pink },
|
|
TroubleCode = { fg = colors.white },
|
|
TroubleWarning = { fg = colors.orange },
|
|
TroubleSignWarning = { link = "DiagnosticWarn"},
|
|
TroubleTextWarning = { fg = colors.white },
|
|
TroublePreview = { fg = colors.red },
|
|
TroubleSource = { fg = colors.cyan },
|
|
TroubleSignHint = { link = "DiagnosticHint"},
|
|
TroubleTextHint = { fg = colors.white },
|
|
TroubleHint = { fg = colors.orange },
|
|
TroubleSignOther = { link = "DiagnosticNormal"},
|
|
TroubleSignInformation = { fg = colors.white },
|
|
TroubleTextInformation = { fg = colors.white },
|
|
TroubleInformation = { fg = colors.white },
|
|
TroubleError = { fg = colors.red },
|
|
TroubleTextError = { fg = colors.white },
|
|
TroubleSignError = { link = "DiagnosticError"},
|
|
TroubleText = { fg = colors.white },
|
|
TroubleFile = { fg = colors.yellow },
|
|
TroubleFoldIcon = { link = "Folded"},
|
|
TroubleNormal = { fg = colors.white },
|
|
TroubleLocation = { fg = colors.red },
|
|
TroubleIndent = { link = colors.Comment },
|
|
}
|