mirror of
https://github.com/gabehf/base46.git
synced 2026-03-07 21:48:18 -08:00
rainbowdelimiters extended integration (#236)
* improve bearded-arc theme * Add extended_integrations (#234) * Add DapUI buttons * Add extended integrations * Update todo.lua * Create rainbowdelimiters.lua --------- Co-authored-by: siduck <siduck@tutanota.com>
This commit is contained in:
parent
36fbc28a0f
commit
919af1c402
7 changed files with 89 additions and 1 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
|
||||
tags
|
||||
16
lua/base46/extended_integrations/codeactionmenu.lua
Normal file
16
lua/base46/extended_integrations/codeactionmenu.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
local colors = require("base46").get_theme_tb "base_30"
|
||||
|
||||
return {
|
||||
CodeActionMenuWarningMessageText = { fg = colors.white },
|
||||
CodeActionMenuWarningMessageBorder = { fg = colors.red },
|
||||
CodeActionMenuMenuIndex = { fg = colors.blue },
|
||||
CodeActionMenuMenuKind = { fg = colors.green },
|
||||
CodeActionMenuMenuTitle = { fg = colors.white },
|
||||
CodeActionMenuMenuDisabled = { link = "Comment" },
|
||||
CodeActionMenuMenuSelection = { fg = colors.blue },
|
||||
CodeActionMenuDetailsTitle = { fg = colors.white },
|
||||
CodeActionMenuDetailsLabel = { fg = colors.yellow },
|
||||
CodeActionMenuDetailsPreferred = { fg = colors.green },
|
||||
CodeActionMenuDetailsDisabled = { link = "Comment" },
|
||||
CodeActionMenuDetailsUndefined = { link = "Comment" },
|
||||
}
|
||||
7
lua/base46/extended_integrations/hop.lua
Normal file
7
lua/base46/extended_integrations/hop.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
local colors = require("base46").get_theme_tb "base_30"
|
||||
|
||||
return {
|
||||
HopNextKey = { fg = colors.red, bold = true },
|
||||
HopNextKey1 = { fg = colors.cyan, bold = true },
|
||||
HopNextKey2 = { fg = colors.blue, bold = true },
|
||||
}
|
||||
11
lua/base46/extended_integrations/rainbowdelimiters.lua
Normal file
11
lua/base46/extended_integrations/rainbowdelimiters.lua
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
local colors = require("base46").get_theme_tb "base_30"
|
||||
|
||||
return {
|
||||
RainbowDelimiterRed = { fg = colors.red },
|
||||
RainbowDelimiterYellow = { fg = colors.yellow },
|
||||
RainbowDelimiterBlue = { fg = colors.blue },
|
||||
RainbowDelimiterOrange = { fg = colors.orange },
|
||||
RainbowDelimiterGreen = { fg = colors.green },
|
||||
RainbowDelimiterViolet = { fg = colors.purple },
|
||||
RainbowDelimiterCyan = { fg = colors.cyan },
|
||||
}
|
||||
25
lua/base46/extended_integrations/todo.lua
Normal file
25
lua/base46/extended_integrations/todo.lua
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
local colors = require("base46").get_theme_tb "base_30"
|
||||
|
||||
return {
|
||||
TodoBgFix = { fg = colors.black2, bg = colors.red, bold = true },
|
||||
TodoBgHack = { fg = colors.black2, bg = colors.orange, bold = true },
|
||||
TodoBgNote = { fg = colors.black2, bg = colors.white, bold = true },
|
||||
TodoBgPerf = { fg = colors.black2, bg = colors.purple, bold = true },
|
||||
TodoBgTest = { fg = colors.black2, bg = colors.purple, bold = true },
|
||||
TodoBgTodo = { fg = colors.black2, bg = colors.yellow, bold = true },
|
||||
TodoBgWarn = { fg = colors.orange, bold = true },
|
||||
TodoFgFix = { fg = colors.red },
|
||||
TodoFgHack = { fg = colors.orange },
|
||||
TodoFgNote = { fg = colors.white },
|
||||
TodoFgPerf = { fg = colors.purple },
|
||||
TodoFgTest = { fg = colors.purple },
|
||||
TodoFgTodo = { fg = colors.yellow },
|
||||
TodoFgWarn = { fg = colors.orange },
|
||||
TodoSignFix = { link = "TodoFgFix" },
|
||||
TodoSignHack = { link = "TodoFgHack" },
|
||||
TodoSignNote = { link = "TodoFgNote" },
|
||||
TodoSignPerf = { link = "TodoFgPerf" },
|
||||
TodoSignTest = { link = "TodoFgTest" },
|
||||
TodoSignTodo = { link = "TodoFgTodo" },
|
||||
TodoSignWarn = { link = "TodoFgWarn" },
|
||||
}
|
||||
27
lua/base46/extended_integrations/trouble.lua
Normal file
27
lua/base46/extended_integrations/trouble.lua
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
local colors = require("base46").get_theme_tb "base_30"
|
||||
|
||||
return {
|
||||
TroubleCount = { fg = colors.pink },
|
||||
TroubleCode = { fg = colors.white },
|
||||
TroubleWarning = { fg = colors.orange },
|
||||
TroubleSignWarning = { fg = colors.yellow },
|
||||
TroubleTextWarning = { fg = colors.white },
|
||||
TroublePreview = { fg = colors.red },
|
||||
TroubleSource = { fg = colors.cyan },
|
||||
TroubleSignHint = { fg = colors.green },
|
||||
TroubleTextHint = { fg = colors.red },
|
||||
TroubleHint = { fg = colors.orange },
|
||||
TroubleSignOther = { fg = colors.green },
|
||||
TroubleSignInformation = { fg = colors.white },
|
||||
TroubleTextInformation = { fg = colors.blue },
|
||||
TroubleInformation = { fg = colors.white },
|
||||
TroubleError = { fg = colors.red },
|
||||
TroubleTextError = { fg = colors.red },
|
||||
TroubleSignError = { fg = colors.red },
|
||||
TroubleText = { fg = colors.white },
|
||||
TroubleFile = { fg = colors.yellow },
|
||||
TroubleFoldIcon = { fg = colors.cyan },
|
||||
TroubleNormal = { fg = colors.white },
|
||||
TroubleLocation = { fg = colors.red },
|
||||
TroubleIndent = { link = colors.Comment },
|
||||
}
|
||||
|
|
@ -73,4 +73,4 @@ M.polish_hl = {
|
|||
|
||||
M = require("base46").override_theme(M, "bearded-arc")
|
||||
|
||||
return M
|
||||
return M
|
||||
Loading…
Add table
Add a link
Reference in a new issue