docs: Fix on_colors example (#197)

This commit is contained in:
Ken Powers
2022-09-07 11:26:55 -05:00
committed by GitHub
parent e9b4ff7d62
commit 5722269363

View File

@@ -166,10 +166,10 @@ require("tokyonight").setup({
},
sidebars = { "qf", "vista_kind", "terminal", "packer" },
-- Change the "hint" color to the "orange" color, and make the "error" color bright red
on_colors = function(colors) {
on_colors = function(colors)
colors.hint = colors.orange
colors.error = "#ff0000"
}
end
})
```