|
@@ -34,10 +34,10 @@ function my_colors:set_syntax_highlight()
|
|
|
})
|
|
|
|
|
|
highlight({ "Constant", "Character", "Number", "Boolean", "Float" }, {
|
|
|
- fg = self.palette.grey,
|
|
|
+ fg = "#727272",
|
|
|
bg = "NONE",
|
|
|
bold = true,
|
|
|
- underline = true,
|
|
|
+ -- underline = true,
|
|
|
})
|
|
|
|
|
|
highlight({ "Title", "@markup.heading" }, {
|
|
@@ -65,7 +65,7 @@ function my_colors:set_syntax_highlight()
|
|
|
Keyword = { fg = self.palette.bright_yellow, bold = true },
|
|
|
Exception = { fg = self.palette.red },
|
|
|
|
|
|
- Comment = { fg = self.palette.grey },
|
|
|
+ Comment = { fg = self.palette.bright_black },
|
|
|
Macro = { fg = self.palette.magenta },
|
|
|
|
|
|
Type = { fg = self.palette.blue, italic = true },
|