From e7a149d58153e59157c1b26e75e6de5fe5ec93c7 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 13 May 2023 06:22:44 -0500 Subject: [PATCH] feat(nvim): improve colors for telescope prompt --- dots/.config/nvim/lua/plugins/configs/kanagawa.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dots/.config/nvim/lua/plugins/configs/kanagawa.lua b/dots/.config/nvim/lua/plugins/configs/kanagawa.lua index 98cff55f..2cdb054c 100644 --- a/dots/.config/nvim/lua/plugins/configs/kanagawa.lua +++ b/dots/.config/nvim/lua/plugins/configs/kanagawa.lua @@ -74,13 +74,14 @@ require("kanagawa").setup({ CmpCustomSelectionNpm = { fg = colors.fujiWhite, bg = colors.peachRed }, CmpCustomSelectionCommit = { fg = colors.fujiWhite, bg = colors.peachRed }, CmpCustomSelectionSpell = { fg = colors.fujiWhite, bg = colors.waveRed }, - TelescopeNormal = { bg = colors.sumiInk1 }, - TelescopeBorder = { bg = colors.sumiInk1, fg = colors.sumiInk1 }, + TelescopeNormal = { bg = colors.sumiInk2 }, + TelescopeBorder = { bg = colors.sumiInk2, fg = colors.sumiInk1 }, TelescopePromptBorder = { bg = colors.sumiInk0, fg = colors.sumiInk0 }, + TelescopePromptNormal = { bg = colors.sumiInk0, fg = colors.fujiWhite }, TelescopePromptTitle = { fg = colors.sumiInk0, bg = colors.oniViolet }, TelescopePreviewTitle = { fg = colors.sumiInk0, bg = colors.sakuraPink }, - TelescopePreviewBorder = { bg = colors.sumiInk2, fg = colors.sumiInk2 }, - TelescopePreviewNormal = { bg = colors.sumiInk2 }, + TelescopePreviewNormal = { bg = colors.sumiInk4 }, + TelescopePreviewBorder = { link = "TelescopePreviewNormal" }, TelescopeResultsTitle = { fg = "NONE", bg = "NONE" }, WinSeparator = { fg = colors.sumiInk4, bg = "NONE" }, MiniCursorword = { bg = colors.waveBlue2 },