summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleksiy Buell <olekawaii@yahoo.com>2026-08-22 18:16:02 -0400
committerNguyễn Gia Phong <cnx@loang.net>2026-08-24 13:48:05 +0900
commit086bc58fa1e561e1c0ac162c5bed28afc417f123 (patch)
treed616bd17fef841e91fe27beeebf1f6996fa6b84c
parent4739514e78257745472260734f79c36089c2e4fa (diff)
guix: colors: Fix ansi escape code for reverse video.
6 is the code for fast blink, 7 for reverses video. * guix/colors.scm (color): Set REVERSE to 7. Merges: https://codeberg.org/guix/guix/pulls/10741 Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
-rw-r--r--guix/colors.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/colors.scm b/guix/colors.scm
index 6603642d249..09bc7c60cc2 100644
--- a/guix/colors.scm
+++ b/guix/colors.scm
@@ -92,7 +92,7 @@
92 (UNDERLINE "4") 92 (UNDERLINE "4")
93 (UNDERSCORE "4") 93 (UNDERSCORE "4")
94 (BLINK "5") 94 (BLINK "5")
95 (REVERSE "6") 95 (REVERSE "7")
96 (CONCEALED "8") 96 (CONCEALED "8")
97 (BLACK "30") 97 (BLACK "30")
98 (RED "31") 98 (RED "31")