diff options
author | William Goulois <[email protected]> | 2021-07-26 10:32:33 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-26 13:02:33 +0430 |
commit | c1b0c6f065591fb2259f37d35cd11dbded86edf9 (patch) | |
tree | 790cb49e23e11f9b22f54d0a4e55717bed6750d5 | |
parent | ce22121c8293b87a4317c6be59cef98fcd1643ed (diff) |
fix: WarningMsg color was red (#1092)
-rw-r--r-- | lua/spacegray/highlights.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/spacegray/highlights.lua b/lua/spacegray/highlights.lua index 2b33597d..171aca83 100644 --- a/lua/spacegray/highlights.lua +++ b/lua/spacegray/highlights.lua @@ -26,7 +26,7 @@ local highlights = { NormalFloat = { bg = C.alt_bg }, Visual = { bg = C.alt_bg }, VisualNOS = { bg = C.alt_bg }, - WarningMsg = { fg = C.error_red, bg = C.bg }, + WarningMsg = { fg = C.warning_orange, bg = C.bg }, DiffAdd = { fg = C.alt_bg, bg = C.sign_add }, DiffChange = { fg = C.alt_bg, bg = C.sign_change, style = "underline" }, DiffDelete = { fg = C.alt_bg, bg = C.sign_delete }, |