A dark and earthy colorscheme for Neovim. (mirror) github.com/ptdewey/darkearth-nvim
neovim neovim-colorscheme fennel

feat: float border and title groups

ptdewey d430d28e b4934a1d

+14 -10
+5 -4
colors/darkearth.lua
··· 98 theme["@text.uri"] = {link = "Underlined"} 99 theme["Title"] = {bold = true, fg = "#B36B42"} 100 theme["@text.title"] = {link = "Title"} 101 - theme["FloatTitle"] = {link = "Title"} 102 theme["ColorColumn"] = {bg = "#24211E"} 103 theme["MatchParen"] = {bg = "#463939", fg = "#D7C484"} 104 theme["Folded"] = {fg = "#B36B42"} ··· 122 theme["Removed"] = {fg = "#B36B42"} 123 theme["DiffRemoved"] = {link = "Removed"} 124 theme["@diff.minus"] = {link = "Removed"} 125 theme["Pmenu"] = {link = "Normal"} 126 - theme["NormalFloat"] = {link = "Pmenu"} 127 theme["PmenuExtra"] = {link = "Pmenu"} 128 theme["PmenuKind"] = {link = "Pmenu"} 129 theme["PmenuSbar"] = {fg = "#6B6461"} ··· 195 theme["MasonHeaderSecondary"] = {link = "LazyButtonActive"} 196 theme["MasonHighlightBlock"] = {link = "LazyButtonActive"} 197 theme["FzfLuaNormal"] = {link = "Normal"} 198 - theme["FzfLuaTitle"] = {link = "Keyword"} 199 - theme["FzfLuaBorder"] = {link = "Type"} 200 theme["FzfLuaCursor"] = {link = "Cursor"} 201 theme["FzfLuaCursorLine"] = {link = "CursorLine"} 202 theme["FzfLuaCursorLineNr"] = {link = "CursorLineNr"}
··· 98 theme["@text.uri"] = {link = "Underlined"} 99 theme["Title"] = {bold = true, fg = "#B36B42"} 100 theme["@text.title"] = {link = "Title"} 101 theme["ColorColumn"] = {bg = "#24211E"} 102 theme["MatchParen"] = {bg = "#463939", fg = "#D7C484"} 103 theme["Folded"] = {fg = "#B36B42"} ··· 121 theme["Removed"] = {fg = "#B36B42"} 122 theme["DiffRemoved"] = {link = "Removed"} 123 theme["@diff.minus"] = {link = "Removed"} 124 + theme["NormalFloat"] = {link = "Normal"} 125 + theme["FloatBorder"] = {fg = "#77824A"} 126 + theme["FloatTitle"] = {bold = true, fg = "#5F865F"} 127 theme["Pmenu"] = {link = "Normal"} 128 theme["PmenuExtra"] = {link = "Pmenu"} 129 theme["PmenuKind"] = {link = "Pmenu"} 130 theme["PmenuSbar"] = {fg = "#6B6461"} ··· 196 theme["MasonHeaderSecondary"] = {link = "LazyButtonActive"} 197 theme["MasonHighlightBlock"] = {link = "LazyButtonActive"} 198 theme["FzfLuaNormal"] = {link = "Normal"} 199 + theme["FzfLuaTitle"] = {link = "FloatTitle"} 200 + theme["FzfLuaBorder"] = {link = "FloatBorder"} 201 theme["FzfLuaCursor"] = {link = "Cursor"} 202 theme["FzfLuaCursorLine"] = {link = "CursorLine"} 203 theme["FzfLuaCursorLineNr"] = {link = "CursorLineNr"}
+9 -6
fnl/darkearth/init.fnl
··· 180 181 (hl Title :fg (darkOrange) :bold true) 182 (ln "@text.title" Title) 183 - (ln FloatTitle Title) 184 185 (hl ColorColumn :bg (bg)) 186 (hl MatchParen :fg (fg) :bg (lightBrown)) ··· 210 (ln DiffRemoved Removed) 211 (ln "@diff.minus" Removed) 212 213 - ; Pmenu 214 (ln Pmenu Normal) 215 - (ln NormalFloat Pmenu) 216 (ln PmenuExtra Pmenu) 217 (ln PmenuKind Pmenu) 218 (hl PmenuSbar :fg (scroll)) ··· 221 (ln PmenuExtraSel PmenuSel) 222 (ln PmenuKindSel PmenuSel) 223 224 - ; Statusline 225 (hl StatusLine :fg (fg) :bg (bg) :bold true) 226 (ln MsgSeparator StatusLine) 227 (hl StatusLineNC :fg (altLineNr) :bg (bg) :bold true) ··· 310 311 ;; Fzf-Lua 312 (ln FzfLuaNormal Normal) 313 - (ln FzfLuaTitle Keyword) 314 - (ln FzfLuaBorder Type) 315 (ln FzfLuaCursor Cursor) 316 (ln FzfLuaCursorLine CursorLine) 317 (ln FzfLuaCursorLineNr CursorLineNr)
··· 180 181 (hl Title :fg (darkOrange) :bold true) 182 (ln "@text.title" Title) 183 184 (hl ColorColumn :bg (bg)) 185 (hl MatchParen :fg (fg) :bg (lightBrown)) ··· 209 (ln DiffRemoved Removed) 210 (ln "@diff.minus" Removed) 211 212 + ;; Floating window 213 + (ln NormalFloat Normal) 214 + (hl FloatBorder :fg (green)) 215 + (hl FloatTitle :fg (teal) :bold true) 216 + 217 + ;; Pmenu 218 (ln Pmenu Normal) 219 (ln PmenuExtra Pmenu) 220 (ln PmenuKind Pmenu) 221 (hl PmenuSbar :fg (scroll)) ··· 224 (ln PmenuExtraSel PmenuSel) 225 (ln PmenuKindSel PmenuSel) 226 227 + ;; Statusline 228 (hl StatusLine :fg (fg) :bg (bg) :bold true) 229 (ln MsgSeparator StatusLine) 230 (hl StatusLineNC :fg (altLineNr) :bg (bg) :bold true) ··· 313 314 ;; Fzf-Lua 315 (ln FzfLuaNormal Normal) 316 + (ln FzfLuaTitle FloatTitle) 317 + (ln FzfLuaBorder FloatBorder) 318 (ln FzfLuaCursor Cursor) 319 (ln FzfLuaCursorLine CursorLine) 320 (ln FzfLuaCursorLineNr CursorLineNr)