You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lua/lush_theme/chstr.lua
+23-23
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ local theme = lush(function(injected_functions)
96
96
-- MsgSeparator { }, -- Separator for scrolled messages, `msgsep` flag of 'display'
97
97
-- MoreMsg { }, -- |more-prompt|
98
98
-- NonText { }, -- '@' 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|.
99
-
--Normal { }, -- Normal text
99
+
Normal {bg=hsl("#2c3643"), fg=hsl("#ffffff") }, -- Normal text
100
100
-- NormalFloat { }, -- Normal text in floating windows.
101
101
-- FloatBorder { }, -- Border of floating windows.
102
102
-- FloatTitle { }, -- Title of floating windows.
@@ -140,23 +140,23 @@ local theme = lush(function(injected_functions)
140
140
--
141
141
-- Uncomment and edit if you want more specific syntax highlighting.
142
142
143
-
--Comment { }, -- Any comment
143
+
Comment {fg=hsl("#8f8f8f") }, -- Any comment
144
144
145
145
-- Constant { }, -- (*) Any constant
146
-
--String { }, -- A string constant: "this is a string"
147
-
--Character { }, -- A character constant: 'c', '\n'
148
-
--Number { }, -- A number constant: 234, 0xff
149
-
-- Boolean{ }, -- A boolean constant: TRUE, false
150
-
-- Float { }, -- A floating point constant: 2.3e10
146
+
String {fg=hsl("#16c98d") }, -- A string constant: "this is a string"
147
+
Character {fg=hsl("#18dd9c") }, -- A character constant: 'c', '\n'
148
+
Number {fg=hsl("#ffc83f") }, -- A number constant: 234, 0xff
149
+
Float { fg=Number.fg}, -- A floating point constant: 2.3e10
150
+
Boolean{ fg=hsl("#ff9f3f"), bold=true}, -- A boolean constant: TRUE, false
151
151
152
-
--Identifier { }, -- (*) Any variable name
153
-
--Function { }, -- Function name (also: methods for classes)
152
+
Identifier {fg=hsl("#28b9d6") }, -- (*) Any variable name
153
+
Function {fg=hsl("#288ad6") }, -- Function name (also: methods for classes)
154
154
155
-
--Statement { }, -- (*) Any statement
155
+
Statement {fg=hsl("#eb94bb") }, -- (*) Any statement
0 commit comments