Skip to content

Commit

Permalink
Updated lua
Browse files Browse the repository at this point in the history
  • Loading branch information
blacksheepcosmo committed Nov 21, 2024
1 parent 315b351 commit bda05b6
Showing 1 changed file with 12 additions and 221 deletions.
233 changes: 12 additions & 221 deletions lua/blackbeard/themes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,7 @@ M.dark = function(palette)
Normal = {
fg = palette.fg,
bg = palette.bg,
},
Comment = {
fg = palette.blue,
italic = true,
},
Constant = {
fg = palette.orange,
},
Variable = {
fg = palette.brorange,
},
Function = {
fg = palette.brred,
},
Identifier = {
fg = palette.red,
},
LineNr = {
fg = palette.green,
},
Directory = {
fg = palette.brown,
},
},
}
end

Expand Down Expand Up @@ -153,218 +131,31 @@ end
-- Avocado Theme
M.avocado = function(palette)
return {
-- Basic UI Elements
Normal = {
fg = palette.brblack,
bg = palette.green,
},
CursorLine = {
bg = palette.blue,
},
LineNr = {
fg = palette.white,
},
CursorLineNr = {
fg = palette.black,
bold = true,
},
StatusLine = {
fg = palette.black,
bg = palette.fg,
},
StatusLineNC = {
fg = palette.brblack,
bg = palette.fg,
},
VertSplit = {
fg = palette.brblack,
},
Pmenu = {
fg = palette.black,
bg = palette.brblack,
},
PmenuSel = {
fg = palette.bg,
bg = palette.black,
},
Visual = {
bg = palette.blue,
},
Search = {
fg = palette.bg,
bg = palette.blue,
bold = true,
fg = palette.fg,
bg = palette.bg,
},

-- Syntax Highlighting
Comment = {
fg = palette.magenta,
fg = palette.blue,
italic = true,
},
Constant = {
fg = palette.black,
},
String = {
fg = palette.brblack,
},
Character = {
fg = palette.black,
},
Number = {
fg = palette.cursor,
fg = palette.orange,
},
Boolean = {
fg = palette.red,
bold = true,
Variable = {
fg = palette.brorange,
},
Function = {
fg = palette.red,
bold = true,
},
Statement = {
fg = palette.brblack,
bold = true,
},
Conditional = {
fg = palette.brblack,
},
Repeat = {
fg = palette.magenta,
},
Label = {
fg = palette.brblack,
},
Operator = {
fg = palette.black,
fg = palette.brred,
},
Identifier = {
fg = palette.brblack,
bold = true,
italic = true,
},
Keyword = {
fg = palette.brblack,
bold = true,
},
Exception = {
fg = palette.red,
},
Type = {
fg = palette.brblack,
bold = true,
},
Structure = {
fg = palette.brblack,
},
Typedef = {
fg = palette.black,
},
Include = {
fg = palette.red,
bold = true,
},
PreProc = {
fg = palette.magenta,
},
Special = {
fg = palette.red,
bold = true,
},
SpecialChar = {
fg = palette.white,
},
Tag = {
fg = palette.red,
bold = true,
},
Delimiter = {
fg = palette.brblack,
},
SpecialComment = {
fg = palette.magenta,
italic = true,
},
Todo = {
fg = palette.red,
bold = true,
italic = true,
},

-- NeoTree and File Explorer
NeoTreeDirectoryName = {
fg = palette.black,
bold = true,
},
NeoTreeDirectoryIcon = {
fg = palette.blue,
},
NeoTreeFileName = {
fg = palette.brblack,
},
NeoTreeFileNameOpened = {
fg = palette.black,
bold = true,
},
NeoTreeIndentMarker = {
fg = palette.brblack,
},
NeoTreeGitModified = {
fg = palette.cyan,
},
NeoTreeGitAdded = {
fg = palette.white,
},
NeoTreeGitDeleted = {
fg = palette.magenta,
},

-- Diagnostics
DiagnosticError = {
fg = palette.red,
},
DiagnosticWarn = {
fg = palette.magenta,
},
DiagnosticInfo = {
fg = palette.blue,
},
DiagnosticHint = {
fg = palette.black,
},

-- Other UI Elements
SignColumn = {
fg = palette.brblack,
},
CursorColumn = {
bg = palette.bg,
},
Folded = {
fg = palette.brblack,
bg = palette.fg,
},
DiffAdd = {
fg = palette.white,
bg = palette.bg,
},
DiffChange = {
fg = palette.blue,
bg = palette.bg,
},
DiffDelete = {
fg = palette.red,
bg = palette.bg,
},
DiffText = {
fg = palette.brblack,
bold = true,
},
FoldColumn = {
fg = palette.brblack,
LineNr = {
fg = palette.green,
},
QuickFixLine = {
fg = palette.red,
bold = true,
Directory = {
fg = palette.brown,
},
}
end
Expand Down

0 comments on commit bda05b6

Please sign in to comment.