mirror of https://github.com/gabehf/base46.git
parent
8195ffa939
commit
ca546ccacd
@ -1,6 +1,6 @@
|
|||||||
column_width = 120
|
column_width = 120
|
||||||
line_endings = "Unix"
|
line_endings = "Unix"
|
||||||
indent_type = "Spaces"
|
indent_type = "Spaces"
|
||||||
indent_width = 3
|
indent_width = 2
|
||||||
quote_style = "AutoPreferDouble"
|
quote_style = "AutoPreferDouble"
|
||||||
call_parentheses = "None"
|
call_parentheses = "None"
|
||||||
|
|||||||
@ -1,48 +1,48 @@
|
|||||||
local colors = require("base46").get_theme_tb "base_30"
|
local colors = require("base46").get_theme_tb "base_30"
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
NvimTreeWinSeparator = {
|
NvimTreeWinSeparator = {
|
||||||
fg = colors.one_bg2,
|
fg = colors.one_bg2,
|
||||||
bg = "NONE",
|
bg = "NONE",
|
||||||
},
|
},
|
||||||
|
|
||||||
TelescopeResultsTitle = {
|
TelescopeResultsTitle = {
|
||||||
fg = colors.black,
|
fg = colors.black,
|
||||||
bg = colors.blue,
|
bg = colors.blue,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- for hl groups which need bg = "NONE" only!
|
-- for hl groups which need bg = "NONE" only!
|
||||||
local hl_groups = {
|
local hl_groups = {
|
||||||
"NormalFloat",
|
"NormalFloat",
|
||||||
"Normal",
|
"Normal",
|
||||||
"Folded",
|
"Folded",
|
||||||
"NvimTreeNormal",
|
"NvimTreeNormal",
|
||||||
"NvimTreeNormalNC",
|
"NvimTreeNormalNC",
|
||||||
"NvimTreeCursorLine",
|
"NvimTreeCursorLine",
|
||||||
"TelescopeNormal",
|
"TelescopeNormal",
|
||||||
"TelescopePrompt",
|
"TelescopePrompt",
|
||||||
"TelescopeResults",
|
"TelescopeResults",
|
||||||
"TelescopePromptNormal",
|
"TelescopePromptNormal",
|
||||||
"TelescopePromptPrefix",
|
"TelescopePromptPrefix",
|
||||||
"CursorLine",
|
"CursorLine",
|
||||||
"Pmenu",
|
"Pmenu",
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, groups in ipairs(hl_groups) do
|
for _, groups in ipairs(hl_groups) do
|
||||||
M[groups] = {
|
M[groups] = {
|
||||||
bg = "NONE",
|
bg = "NONE",
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
M.TelescopeBorder = {
|
M.TelescopeBorder = {
|
||||||
fg = colors.grey,
|
fg = colors.grey,
|
||||||
bg = "NONE",
|
bg = "NONE",
|
||||||
}
|
}
|
||||||
|
|
||||||
M.TelescopePromptBorder = {
|
M.TelescopePromptBorder = {
|
||||||
fg = colors.grey,
|
fg = colors.grey,
|
||||||
bg = "NONE",
|
bg = "NONE",
|
||||||
}
|
}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
local colors = require("base46").get_theme_tb "base_30"
|
local colors = require("base46").get_theme_tb "base_30"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
AlphaHeader = { fg = colors.grey_fg },
|
AlphaHeader = { fg = colors.grey_fg },
|
||||||
AlphaButtons = { fg = colors.light_grey },
|
AlphaButtons = { fg = colors.light_grey },
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
local colors = require("base46").get_theme_tb "base_30"
|
local colors = require("base46").get_theme_tb "base_30"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
IndentBlanklineChar = { fg = colors.line },
|
IndentBlanklineChar = { fg = colors.line },
|
||||||
IndentBlanklineSpaceChar = { fg = colors.line },
|
IndentBlanklineSpaceChar = { fg = colors.line },
|
||||||
IndentBlanklineContextChar = { fg = colors.grey },
|
IndentBlanklineContextChar = { fg = colors.grey },
|
||||||
IndentBlanklineContextStart = { bg = colors.one_bg2 },
|
IndentBlanklineContextStart = { bg = colors.one_bg2 },
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,32 +1,32 @@
|
|||||||
local colors = require("base46").get_theme_tb "base_30"
|
local colors = require("base46").get_theme_tb "base_30"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
DevIconDefault = { fg = colors.red },
|
DevIconDefault = { fg = colors.red },
|
||||||
DevIconc = { fg = colors.blue },
|
DevIconc = { fg = colors.blue },
|
||||||
DevIconcss = { fg = colors.blue },
|
DevIconcss = { fg = colors.blue },
|
||||||
DevIcondeb = { fg = colors.cyan },
|
DevIcondeb = { fg = colors.cyan },
|
||||||
DevIconDockerfile = { fg = colors.cyan },
|
DevIconDockerfile = { fg = colors.cyan },
|
||||||
DevIconhtml = { fg = colors.baby_pink },
|
DevIconhtml = { fg = colors.baby_pink },
|
||||||
DevIconjpeg = { fg = colors.dark_purple },
|
DevIconjpeg = { fg = colors.dark_purple },
|
||||||
DevIconjpg = { fg = colors.dark_purple },
|
DevIconjpg = { fg = colors.dark_purple },
|
||||||
DevIconjs = { fg = colors.sun },
|
DevIconjs = { fg = colors.sun },
|
||||||
DevIconkt = { fg = colors.orange },
|
DevIconkt = { fg = colors.orange },
|
||||||
DevIconlock = { fg = colors.red },
|
DevIconlock = { fg = colors.red },
|
||||||
DevIconlua = { fg = colors.blue },
|
DevIconlua = { fg = colors.blue },
|
||||||
DevIconmp3 = { fg = colors.white },
|
DevIconmp3 = { fg = colors.white },
|
||||||
DevIconmp4 = { fg = colors.white },
|
DevIconmp4 = { fg = colors.white },
|
||||||
DevIconout = { fg = colors.white },
|
DevIconout = { fg = colors.white },
|
||||||
DevIconpng = { fg = colors.dark_purple },
|
DevIconpng = { fg = colors.dark_purple },
|
||||||
DevIconpy = { fg = colors.cyan },
|
DevIconpy = { fg = colors.cyan },
|
||||||
DevIcontoml = { fg = colors.blue },
|
DevIcontoml = { fg = colors.blue },
|
||||||
DevIconts = { fg = colors.teal },
|
DevIconts = { fg = colors.teal },
|
||||||
DevIconttf = { fg = colors.white },
|
DevIconttf = { fg = colors.white },
|
||||||
DevIconrb = { fg = colors.pink },
|
DevIconrb = { fg = colors.pink },
|
||||||
DevIconrpm = { fg = colors.orange },
|
DevIconrpm = { fg = colors.orange },
|
||||||
DevIconvue = { fg = colors.vibrant_green },
|
DevIconvue = { fg = colors.vibrant_green },
|
||||||
DevIconwoff = { fg = colors.white },
|
DevIconwoff = { fg = colors.white },
|
||||||
DevIconwoff2 = { fg = colors.white },
|
DevIconwoff2 = { fg = colors.white },
|
||||||
DevIconxz = { fg = colors.sun },
|
DevIconxz = { fg = colors.sun },
|
||||||
DevIconzip = { fg = colors.sun },
|
DevIconzip = { fg = colors.sun },
|
||||||
DevIconZig = { fg = colors.orange },
|
DevIconZig = { fg = colors.orange },
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,18 +1,18 @@
|
|||||||
local colors = require("base46").get_theme_tb "base_30"
|
local colors = require("base46").get_theme_tb "base_30"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
-- LSP References
|
-- LSP References
|
||||||
LspReferenceText = { fg = colors.darker_black, bg = colors.white },
|
LspReferenceText = { fg = colors.darker_black, bg = colors.white },
|
||||||
LspReferenceRead = { fg = colors.darker_black, bg = colors.white },
|
LspReferenceRead = { fg = colors.darker_black, bg = colors.white },
|
||||||
LspReferenceWrite = { fg = colors.darker_black, bg = colors.white },
|
LspReferenceWrite = { fg = colors.darker_black, bg = colors.white },
|
||||||
|
|
||||||
-- Lsp Diagnostics
|
-- Lsp Diagnostics
|
||||||
DiagnosticHint = { fg = colors.purple },
|
DiagnosticHint = { fg = colors.purple },
|
||||||
DiagnosticError = { fg = colors.red },
|
DiagnosticError = { fg = colors.red },
|
||||||
DiagnosticWarn = { fg = colors.yellow },
|
DiagnosticWarn = { fg = colors.yellow },
|
||||||
DiagnosticInformation = { fg = colors.green },
|
DiagnosticInformation = { fg = colors.green },
|
||||||
LspSignatureActiveParameter = { fg = colors.black, bg = colors.green },
|
LspSignatureActiveParameter = { fg = colors.black, bg = colors.green },
|
||||||
|
|
||||||
RenamerTitle = { fg = colors.black, bg = colors.red },
|
RenamerTitle = { fg = colors.black, bg = colors.red },
|
||||||
RenamerBorder = { fg = colors.red },
|
RenamerBorder = { fg = colors.red },
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,46 +1,46 @@
|
|||||||
local colors = require("base46").get_theme_tb "base_30"
|
local colors = require("base46").get_theme_tb "base_30"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
NvimTreeEmptyFolderName = { fg = colors.folder_bg },
|
NvimTreeEmptyFolderName = { fg = colors.folder_bg },
|
||||||
NvimTreeEndOfBuffer = { fg = colors.darker_black },
|
NvimTreeEndOfBuffer = { fg = colors.darker_black },
|
||||||
NvimTreeFolderIcon = { fg = colors.folder_bg },
|
NvimTreeFolderIcon = { fg = colors.folder_bg },
|
||||||
NvimTreeFolderName = { fg = colors.folder_bg },
|
NvimTreeFolderName = { fg = colors.folder_bg },
|
||||||
NvimTreeGitDirty = { fg = colors.red },
|
NvimTreeGitDirty = { fg = colors.red },
|
||||||
NvimTreeIndentMarker = { fg = colors.grey_fg },
|
NvimTreeIndentMarker = { fg = colors.grey_fg },
|
||||||
NvimTreeNormal = { bg = colors.darker_black },
|
NvimTreeNormal = { bg = colors.darker_black },
|
||||||
NvimTreeNormalNC = { bg = colors.darker_black },
|
NvimTreeNormalNC = { bg = colors.darker_black },
|
||||||
NvimTreeOpenedFolderName = { fg = colors.folder_bg },
|
NvimTreeOpenedFolderName = { fg = colors.folder_bg },
|
||||||
NvimTreeGitIgnored = { fg = colors.light_grey },
|
NvimTreeGitIgnored = { fg = colors.light_grey },
|
||||||
|
|
||||||
NvimTreeWinSeparator = {
|
NvimTreeWinSeparator = {
|
||||||
fg = colors.darker_black,
|
fg = colors.darker_black,
|
||||||
bg = colors.darker_black,
|
bg = colors.darker_black,
|
||||||
},
|
},
|
||||||
|
|
||||||
NvimTreeWindowPicker = {
|
NvimTreeWindowPicker = {
|
||||||
fg = colors.red,
|
fg = colors.red,
|
||||||
bg = colors.black2,
|
bg = colors.black2,
|
||||||
},
|
},
|
||||||
|
|
||||||
NvimTreeCursorLine = {
|
NvimTreeCursorLine = {
|
||||||
bg = colors.black2,
|
bg = colors.black2,
|
||||||
},
|
},
|
||||||
|
|
||||||
NvimTreeGitNew = {
|
NvimTreeGitNew = {
|
||||||
fg = colors.yellow,
|
fg = colors.yellow,
|
||||||
},
|
},
|
||||||
|
|
||||||
NvimTreeGitDeleted = {
|
NvimTreeGitDeleted = {
|
||||||
fg = colors.red,
|
fg = colors.red,
|
||||||
},
|
},
|
||||||
|
|
||||||
NvimTreeSpecialFile = {
|
NvimTreeSpecialFile = {
|
||||||
fg = colors.yellow,
|
fg = colors.yellow,
|
||||||
bold = true,
|
bold = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
NvimTreeRootFolder = {
|
NvimTreeRootFolder = {
|
||||||
fg = colors.red,
|
fg = colors.red,
|
||||||
bold = true,
|
bold = true,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,192 +1,192 @@
|
|||||||
local theme = require("base46").get_theme_tb "base_16"
|
local theme = require("base46").get_theme_tb "base_16"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
TSAnnotation = {
|
TSAnnotation = {
|
||||||
fg = theme.base0F,
|
fg = theme.base0F,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSAttribute = {
|
TSAttribute = {
|
||||||
fg = theme.base0A,
|
fg = theme.base0A,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSTagAttribute = {
|
TSTagAttribute = {
|
||||||
link = "TSProperty",
|
link = "TSProperty",
|
||||||
},
|
},
|
||||||
|
|
||||||
TSCharacter = {
|
TSCharacter = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSConstructor = {
|
TSConstructor = {
|
||||||
fg = theme.base0C,
|
fg = theme.base0C,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSConstBuiltin = {
|
TSConstBuiltin = {
|
||||||
fg = theme.base09,
|
fg = theme.base09,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSConstMacro = {
|
TSConstMacro = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSError = {
|
TSError = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSException = {
|
TSException = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSFloat = {
|
TSFloat = {
|
||||||
fg = theme.base09,
|
fg = theme.base09,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSKeyword = {
|
TSKeyword = {
|
||||||
fg = theme.base0E,
|
fg = theme.base0E,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSKeywordFunction = {
|
TSKeywordFunction = {
|
||||||
fg = theme.base0E,
|
fg = theme.base0E,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSKeywordReturn = {
|
TSKeywordReturn = {
|
||||||
fg = theme.base0E,
|
fg = theme.base0E,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSFunction = {
|
TSFunction = {
|
||||||
fg = theme.base0D,
|
fg = theme.base0D,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSFuncBuiltin = {
|
TSFuncBuiltin = {
|
||||||
fg = theme.base0D,
|
fg = theme.base0D,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSFuncMacro = {
|
TSFuncMacro = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSKeywordOperator = {
|
TSKeywordOperator = {
|
||||||
fg = theme.base0E,
|
fg = theme.base0E,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSMethod = {
|
TSMethod = {
|
||||||
fg = theme.base0D,
|
fg = theme.base0D,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSNamespace = {
|
TSNamespace = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSNone = {
|
TSNone = {
|
||||||
fg = theme.base05,
|
fg = theme.base05,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSParameter = {
|
TSParameter = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSParameterReference = {
|
TSParameterReference = {
|
||||||
fg = theme.base05,
|
fg = theme.base05,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSPunctBracket = {
|
TSPunctBracket = {
|
||||||
fg = theme.base0F,
|
fg = theme.base0F,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSPunctDelimiter = {
|
TSPunctDelimiter = {
|
||||||
fg = theme.base0F,
|
fg = theme.base0F,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSPunctSpecial = {
|
TSPunctSpecial = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSStringRegex = {
|
TSStringRegex = {
|
||||||
fg = theme.base0C,
|
fg = theme.base0C,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSStringEscape = {
|
TSStringEscape = {
|
||||||
fg = theme.base0C,
|
fg = theme.base0C,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSSymbol = {
|
TSSymbol = {
|
||||||
fg = theme.base0B,
|
fg = theme.base0B,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSTagDelimiter = {
|
TSTagDelimiter = {
|
||||||
fg = theme.base0F,
|
fg = theme.base0F,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSText = {
|
TSText = {
|
||||||
fg = theme.base05,
|
fg = theme.base05,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSStrong = {
|
TSStrong = {
|
||||||
bold = true,
|
bold = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSEmphasis = {
|
TSEmphasis = {
|
||||||
fg = theme.base09,
|
fg = theme.base09,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSStrike = {
|
TSStrike = {
|
||||||
fg = theme.base00,
|
fg = theme.base00,
|
||||||
strikethrough = true,
|
strikethrough = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSLiteral = {
|
TSLiteral = {
|
||||||
fg = theme.base09,
|
fg = theme.base09,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSURI = {
|
TSURI = {
|
||||||
fg = theme.base09,
|
fg = theme.base09,
|
||||||
|
|
||||||
underline = true,
|
underline = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSTypeBuiltin = {
|
TSTypeBuiltin = {
|
||||||
fg = theme.base0A,
|
fg = theme.base0A,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSVariableBuiltin = {
|
TSVariableBuiltin = {
|
||||||
fg = theme.base09,
|
fg = theme.base09,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSVariable = {
|
TSVariable = {
|
||||||
fg = theme.base05,
|
fg = theme.base05,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSDefinition = {
|
TSDefinition = {
|
||||||
sp = theme.base04,
|
sp = theme.base04,
|
||||||
underline = true,
|
underline = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSDefinitionUsage = {
|
TSDefinitionUsage = {
|
||||||
sp = theme.base04,
|
sp = theme.base04,
|
||||||
underline = true,
|
underline = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSCurrentScope = {
|
TSCurrentScope = {
|
||||||
bold = true,
|
bold = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
luaTSField = {
|
luaTSField = {
|
||||||
fg = theme.base0D,
|
fg = theme.base0D,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSFieldKey = {
|
TSFieldKey = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSProperty = {
|
TSProperty = {
|
||||||
fg = theme.base08,
|
fg = theme.base08,
|
||||||
},
|
},
|
||||||
|
|
||||||
TSInclude = {
|
TSInclude = {
|
||||||
link = "Include",
|
link = "Include",
|
||||||
},
|
},
|
||||||
|
|
||||||
TSConditional = {
|
TSConditional = {
|
||||||
link = "Conditional",
|
link = "Conditional",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
local colors = require("base46").get_theme_tb "base_30"
|
local colors = require("base46").get_theme_tb "base_30"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
WhichKey = { fg = colors.blue },
|
WhichKey = { fg = colors.blue },
|
||||||
WhichKeySeparator = { fg = colors.light_grey },
|
WhichKeySeparator = { fg = colors.light_grey },
|
||||||
WhichKeyDesc = { fg = colors.red },
|
WhichKeyDesc = { fg = colors.red },
|
||||||
WhichKeyGroup = { fg = colors.green },
|
WhichKeyGroup = { fg = colors.green },
|
||||||
WhichKeyValue = { fg = colors.green },
|
WhichKeyValue = { fg = colors.green },
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in new issue