From 2c537c836c2762d500d379d140f51a66ffaea562 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Tue, 4 Jun 2024 16:42:30 +0800 Subject: [PATCH] Colors: normalize bright colors Fix #991 --- src/modules/colors/colors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/colors/colors.c b/src/modules/colors/colors.c index 5eef93748..e7e133d68 100644 --- a/src/modules/colors/colors.c +++ b/src/modules/colors/colors.c @@ -49,7 +49,7 @@ void ffPrintColors(FFColorsOptions* options) for(uint8_t i = max(options->block.range[0], 8); i <= options->block.range[1]; i++) { if(!instance.config.display.pipe) - ffStrbufAppendF(&result, "\e[1;9%dm", i - 8); + ffStrbufAppendF(&result, "\e[9%dm", i - 8); for (uint8_t j = 0; j < options->block.width; j++) ffStrbufAppendS(&result, "█"); }