tangled
alpha
login
or
join now
pdewey.com
/
darkearth-nvim
0
fork
atom
A dark and earthy colorscheme for Neovim. (mirror)
github.com/ptdewey/darkearth-nvim
neovim
neovim-colorscheme
fennel
0
fork
atom
overview
issues
pulls
pipelines
feat: float border and title groups
ptdewey
7 months ago
d430d28e
b4934a1d
+14
-10
2 changed files
expand all
collapse all
unified
split
colors
darkearth.lua
fnl
darkearth
init.fnl
+5
-4
colors/darkearth.lua
···
98
98
theme["@text.uri"] = {link = "Underlined"}
99
99
theme["Title"] = {bold = true, fg = "#B36B42"}
100
100
theme["@text.title"] = {link = "Title"}
101
101
-
theme["FloatTitle"] = {link = "Title"}
102
101
theme["ColorColumn"] = {bg = "#24211E"}
103
102
theme["MatchParen"] = {bg = "#463939", fg = "#D7C484"}
104
103
theme["Folded"] = {fg = "#B36B42"}
···
122
121
theme["Removed"] = {fg = "#B36B42"}
123
122
theme["DiffRemoved"] = {link = "Removed"}
124
123
theme["@diff.minus"] = {link = "Removed"}
124
124
+
theme["NormalFloat"] = {link = "Normal"}
125
125
+
theme["FloatBorder"] = {fg = "#77824A"}
126
126
+
theme["FloatTitle"] = {bold = true, fg = "#5F865F"}
125
127
theme["Pmenu"] = {link = "Normal"}
126
126
-
theme["NormalFloat"] = {link = "Pmenu"}
127
128
theme["PmenuExtra"] = {link = "Pmenu"}
128
129
theme["PmenuKind"] = {link = "Pmenu"}
129
130
theme["PmenuSbar"] = {fg = "#6B6461"}
···
195
196
theme["MasonHeaderSecondary"] = {link = "LazyButtonActive"}
196
197
theme["MasonHighlightBlock"] = {link = "LazyButtonActive"}
197
198
theme["FzfLuaNormal"] = {link = "Normal"}
198
198
-
theme["FzfLuaTitle"] = {link = "Keyword"}
199
199
-
theme["FzfLuaBorder"] = {link = "Type"}
199
199
+
theme["FzfLuaTitle"] = {link = "FloatTitle"}
200
200
+
theme["FzfLuaBorder"] = {link = "FloatBorder"}
200
201
theme["FzfLuaCursor"] = {link = "Cursor"}
201
202
theme["FzfLuaCursorLine"] = {link = "CursorLine"}
202
203
theme["FzfLuaCursorLineNr"] = {link = "CursorLineNr"}
+9
-6
fnl/darkearth/init.fnl
···
180
180
181
181
(hl Title :fg (darkOrange) :bold true)
182
182
(ln "@text.title" Title)
183
183
-
(ln FloatTitle Title)
184
183
185
184
(hl ColorColumn :bg (bg))
186
185
(hl MatchParen :fg (fg) :bg (lightBrown))
···
210
209
(ln DiffRemoved Removed)
211
210
(ln "@diff.minus" Removed)
212
211
213
213
-
; Pmenu
212
212
+
;; Floating window
213
213
+
(ln NormalFloat Normal)
214
214
+
(hl FloatBorder :fg (green))
215
215
+
(hl FloatTitle :fg (teal) :bold true)
216
216
+
217
217
+
;; Pmenu
214
218
(ln Pmenu Normal)
215
215
-
(ln NormalFloat Pmenu)
216
219
(ln PmenuExtra Pmenu)
217
220
(ln PmenuKind Pmenu)
218
221
(hl PmenuSbar :fg (scroll))
···
221
224
(ln PmenuExtraSel PmenuSel)
222
225
(ln PmenuKindSel PmenuSel)
223
226
224
224
-
; Statusline
227
227
+
;; Statusline
225
228
(hl StatusLine :fg (fg) :bg (bg) :bold true)
226
229
(ln MsgSeparator StatusLine)
227
230
(hl StatusLineNC :fg (altLineNr) :bg (bg) :bold true)
···
310
313
311
314
;; Fzf-Lua
312
315
(ln FzfLuaNormal Normal)
313
313
-
(ln FzfLuaTitle Keyword)
314
314
-
(ln FzfLuaBorder Type)
316
316
+
(ln FzfLuaTitle FloatTitle)
317
317
+
(ln FzfLuaBorder FloatBorder)
315
318
(ln FzfLuaCursor Cursor)
316
319
(ln FzfLuaCursorLine CursorLine)
317
320
(ln FzfLuaCursorLineNr CursorLineNr)