aboutsummaryrefslogtreecommitdiff
path: root/stand/lua/color.lua
diff options
context:
space:
mode:
Diffstat (limited to 'stand/lua/color.lua')
-rw-r--r--stand/lua/color.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/stand/lua/color.lua b/stand/lua/color.lua
index 0e51908aebbb..994e7cb1edcb 100644
--- a/stand/lua/color.lua
+++ b/stand/lua/color.lua
@@ -69,7 +69,7 @@ function color.resetfg()
if color.disabled then
return ''
end
- return core.KEYSTR_CSI .. "39m"
+ return color.escapefg(color.WHITE)
end
function color.escapebg(color_value)
@@ -83,7 +83,7 @@ function color.resetbg()
if color.disabled then
return ''
end
- return core.KEYSTR_CSI .. "49m"
+ return color.escapebg(color.BLACK)
end
function color.escape(fg_color, bg_color, attribute)