From 856c36c767f87df19dea1e04afff0f7e1718a39c Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Wed, 3 Jan 2024 11:35:37 +0000 Subject: [PATCH] feat: more colors --- lua/particle/particle.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lua/particle/particle.lua b/lua/particle/particle.lua index 3a2d55d..797c218 100644 --- a/lua/particle/particle.lua +++ b/lua/particle/particle.lua @@ -38,12 +38,12 @@ local theme = lush(function(injected_functions) -- VertSplit { }, -- Column separating vertically split windows -- Folded { }, -- Line used for closed folds -- FoldColumn { }, -- 'foldcolumn' - -- SignColumn { }, -- Column where |signs| are displayed + SignColumn { }, -- Column where |signs| are displayed -- IncSearch { }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c" -- Substitute { }, -- |:substitute| replacement text highlighting -- LineNrAbove { }, -- Line number for when the 'relativenumber' option is set, above the cursor line -- LineNrBelow { }, -- Line number for when the 'relativenumber' option is set, below the cursor line - -- CursorLineNr { }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. + CursorLineNr { fg = hsl("#a292e8"), gui = "bold" }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. -- CursorLineFold { }, -- Like FoldColumn when 'cursorline' is set for the cursor line -- CursorLineSign { }, -- Like SignColumn when 'cursorline' is set for the cursor line -- MatchParen { }, -- Character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt| @@ -55,11 +55,11 @@ local theme = lush(function(injected_functions) LineNr { fg = hsl("#454449") }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set. NonText { fg = Normal.bg.lighten(20) }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|. CursorLine { bg = Normal.bg.lighten(5) }, -- Screen-line at the cursor, when 'cursorline' is set. Low-priority if foreground (ctermfg OR guifg) is not set. - -- NormalFloat { }, -- Normal text in floating windows. + NormalFloat { bg = Normal.bg, fg = Normal.fg }, -- Normal text in floating windows. -- FloatBorder { }, -- Border of floating windows. - -- FloatTitle { }, -- Title of floating windows. + FloatTitle { fg = hsl("#e887bb"), gui = "bold" }, -- Title of floating windows. -- NormalNC { }, -- normal text in non-current windows - -- Pmenu { }, -- Popup menu: Normal item. + Pmenu { bg = Normal.bg, fg = Normal.fg}, -- Popup menu: Normal item. -- PmenuSel { }, -- Popup menu: Selected item. -- PmenuKind { }, -- Popup menu: Normal item "kind" -- PmenuKindSel { }, -- Popup menu: Selected item "kind" @@ -69,13 +69,13 @@ local theme = lush(function(injected_functions) -- PmenuThumb { }, -- Popup menu: Thumb of the scrollbar. -- Question { }, -- |hit-enter| prompt and yes/no questions -- QuickFixLine { }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there. - -- Search { }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out. + Search { fg = hsl("#78b9c4"), gui = "bold underline" }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out. -- SpecialKey { }, -- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace| -- SpellBad { }, -- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise. -- SpellCap { }, -- Word that should start with a capital. |spell| Combined with the highlighting used otherwise. -- SpellLocal { }, -- Word that is recognized by the spellchecker as one that is used in another region. |spell| Combined with the highlighting used otherwise. -- SpellRare { }, -- Word that is recognized by the spellchecker as one that is hardly ever used. |spell| Combined with the highlighting used otherwise. - StatusLine { bg = Normal.bg.lighten(10) }, -- Status line of current window + StatusLine { bg = Normal.bg.lighten(5), fg = hsl("#7ee6ae") }, -- Status line of current window -- StatusLineNC { }, -- Status lines of not-current windows. Note: If this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window. TabLine { bg = Normal.bg.lighten(5), fg = Normal.fg.lighten(5) }, -- Tab pages line, not active tab page label -- TabLineFill { }, -- Tab pages line, where there are no labels