From 6238f989f08393347cb048c50f210b385c671a04 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 22 Apr 2021 01:05:54 +0200 Subject: [PATCH] fix: different colors for info and hint diagnostics --- lua/tokyonight/colors.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/tokyonight/colors.lua b/lua/tokyonight/colors.lua index 9479fce..bf6a2b9 100644 --- a/lua/tokyonight/colors.lua +++ b/lua/tokyonight/colors.lua @@ -59,6 +59,7 @@ function M.setup(config) blue = "#7aa2f7", cyan = "#7dcfff", blue1 = "#2ac3de", + blue2 = "#0db9d7", blue5 = "#89ddff", blue6 = "#B4F9F8", magenta = "#bb9af7", @@ -96,8 +97,8 @@ function M.setup(config) colors.error = colors.red1 colors.warning = colors.yellow - colors.info = colors.teal - colors.hint = colors.info + colors.info = colors.blue2 + colors.hint = colors.teal return colors end