Skip to content

Commit

Permalink
fix(aerial): aerial kind colors
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Oct 12, 2023
1 parent 76a5283 commit 8389146
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lua/tokyonight/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,7 @@ function M.setup()
CmpItemKindUnit = { fg = c.orange, bg = c.none },

CmpItemKindModule = { fg = c.yellow, bg = c.none },
CmpItemKindPackage = { fg = c.yellow, bg = c.none },

CmpItemKindProperty = { fg = c.green1, bg = c.none },
CmpItemKindField = { fg = c.green1, bg = c.none },
Expand Down Expand Up @@ -659,8 +660,8 @@ function M.setup()

AerialFileIcon = { fg = c.fg, bg = c.none },
AerialModuleIcon = { fg = c.yellow, bg = c.none },
AerialNamespaceIcon = { fg = c.fg, bg = c.none },
AerialPackageIcon = { fg = c.fg, bg = c.none },
AerialNamespaceIcon = { fg = c.cyan, bg = c.none },
AerialPackageIcon = { fg = c.cyan, bg = c.none },
AerialClassIcon = { fg = c.orange, bg = c.none },
AerialMethodIcon = { fg = c.blue, bg = c.none },
AerialPropertyIcon = { fg = c.green1, bg = c.none },
Expand All @@ -682,9 +683,9 @@ function M.setup()
AerialEnumMemberIcon = { fg = c.green1, bg = c.none },
AerialStructIcon = { fg = c.orange, bg = c.none },
AerialEventIcon = { fg = c.orange, bg = c.none },
AerialOperatorIcon = { fg = c.fg, bg = c.none },
AerialOperatorIcon = { fg = c.blue5, bg = c.none },
AerialTypeParameterIcon = { fg = c.green1, bg = c.none },
AerialNormal = { fg = c.fg_sidebar },
AerialNormal = { fg = c.fg, bg = c.none },
AerialGuide = { fg = c.fg_gutter },
AerialLine = { link = "LspInlayHint" },

Expand Down

0 comments on commit 8389146

Please sign in to comment.