From 838914625125a931817bdf585f80301555970aee Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 12 Oct 2023 11:50:27 +0200 Subject: [PATCH] fix(aerial): aerial kind colors --- lua/tokyonight/theme.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 4b1c167..8dda7c8 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -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 }, @@ -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 }, @@ -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" },