From 5722269363b14d275e716bb37cd7627b7e28c97d Mon Sep 17 00:00:00 2001 From: Ken Powers Date: Wed, 7 Sep 2022 11:26:55 -0500 Subject: [PATCH] docs: Fix on_colors example (#197) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e4b734..3be8467 100644 --- a/README.md +++ b/README.md @@ -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 }) ```