6
6
# # GENERAL ==============================
7
7
8
8
"warning" = { fg =" yellow" , modifiers = [" bold" ] } # Editor warnings.
9
- "error" = { fg = " red" , modifiers = [" bold" ] } # Editor errors, like mis-typing a command.
9
+ "error" = { bg = " mid-green " , fg = " red" , modifiers = [" bold" ] } # Editor errors, like mis-typing a command.
10
10
"info" = { fg = " mid-blue" , bg = " mid-green" } # Code diagnostic info in gutter (LSP).
11
11
# ? Difference between info and hint ?
12
12
"hint" = { fg = " light-green" , modifiers = [" bold" ] } # Code diagnostics hint in gutter (LSP).
30
30
'ui.cursor.select' = { fg = " light-blue" } # The cursor in select mode (v).
31
31
'ui.cursor.match' = { fg = " red" , modifiers = [" bold" , " reversed" ] } # The matching parentheses of that under the cursor.
32
32
33
- 'ui.selection' = { bg = " mid -green" } # All currently selected text.
34
- 'ui.selection.primary' = { bg = " mid -green" } # The primary selection when there are multiple.
33
+ 'ui.selection' = { bg = " autocomp -green" } # All currently selected text.
34
+ 'ui.selection.primary' = { bg = " autocomp -green" } # The primary selection when there are multiple.
35
35
'ui.cursorline.primary' = { bg = ' mid-green' }
36
36
37
37
'ui.linenr' = { bg = " dark-green" , fg = " gray" } # Line numbers.
42
42
'ui.virtual.whitespace' = { fg = " gray" } # Whitespace markers in editing area.
43
43
'ui.virtual.indent-guide' = { fg = " gray" } # Indentation guides.
44
44
45
- 'ui.statusline' = { fg = " white " , bg = " autocomp-green" } # Status line.
45
+ 'ui.statusline' = { fg = " light-green " , bg = " autocomp-green" } # Status line.
46
46
'ui.statusline.inactive' = { fg = " white" , bg = " mid-green" } # Status line in unfocused windows.
47
47
48
+ "ui.statusline.normal" = { fg = " dark-green" , bg = " mid-blue" , modifiers = [ " bold" ] }
49
+ "ui.statusline.insert" = { fg = " dark-green" , bg = " pink" , modifiers = [ " bold" ] }
50
+ "ui.statusline.select" = { fg = " dark-green" , bg = " yellow" , modifiers = [ " bold" ] }
51
+
48
52
'ui.help' = { bg = " mid-green" , fg = " white" } # `:command` descriptions above the command line.
49
53
50
54
'ui.highlight' = { bg = " mid-green" } # selected contents of symbol pickers (spc-s, spc-S) and current line in buffer picker (spc-b).
51
55
52
- 'ui.menu' = { fg = " gray " , bg = " mid-green" } # Autocomplete menu.
53
- 'ui.menu.selected' = { fg = " white " , bg = " autocomp-green" } # Selected autocomplete item.
56
+ 'ui.menu' = { fg = " white " , bg = " mid-green" } # Autocomplete menu.
57
+ 'ui.menu.selected' = { fg = " light-green " , bg = " autocomp-green" } # Selected autocomplete item.
54
58
55
59
'ui.popup' = { bg = " mid-green" } # Documentation popups (space-k).
56
60
# 'ui.ppopup.info' = { bg = "midgreen", fg = "gray", modifiers = ["bold"] } # Info popups box (space mode menu).
124
128
125
129
'namespace' = { fg = " mid-blue" } # * Namespace keyword in java, C#, etc.
126
130
127
-
128
131
# Markup ==============================
129
132
# Colors for markup languages, like Markdown or XML.
130
133
174
177
'diff.plus' = " light-green" # { } # Additions.
175
178
'diff.minus' = " yelllow" # { } # Deletions.
176
179
'diff.delta' = " red" # { } # Modifications.
177
- 'diff.delta.moved' = { } # Renamed or moved files / changes.
180
+ # 'diff.delta.moved' = { } # Renamed or moved files / changes.
178
181
179
182
180
183
[palette ] # Define your custom colors here.
@@ -185,9 +188,9 @@ light-green = "#48e9a7" # strings
185
188
186
189
pink = " #df769b"
187
190
yellow = " #ffd800"
188
- purple = " #6f60ea "
191
+ purple = " #918cff "
189
192
white = " #b1cace"
190
- orange = " #e4b782 "
193
+ orange = " #ffa864 "
191
194
gray = " #5b858b" # mainly for comments/background text
192
195
red = " #e34e1b"
193
196
0 commit comments