[PATCH 2/5] fbconsole: darken shade of non-bright white

Ahmad Fatoum a.fatoum at barebox.org
Sun Jun 1 13:59:59 PDT 2025


Bold/bright white at 255 is too close to 229 for the shades to be
clearly discernible. Bump down the white to 205 instead, which is
still white-ish enough.

Signed-off-by: Ahmad Fatoum <a.fatoum at barebox.org>
---
 drivers/video/fbconsole.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/fbconsole.c b/drivers/video/fbconsole.c
index 55df524a96a3..cd1950a644cc 100644
--- a/drivers/video/fbconsole.c
+++ b/drivers/video/fbconsole.c
@@ -123,7 +123,7 @@ static struct rgb colors[] = {
 	[BLUE]			= { 0, 0, 238 },
 	[MAGENTA]		= { 205, 0, 205 },
 	[CYAN]			= { 0, 205, 205 },
-	[WHITE]			= { 229, 229, 229 },
+	[WHITE]			= { 205, 205, 205 },
 	[BRIGHT + BLACK]	= { 127, 127, 127 },
 	[BRIGHT + RED]		= { 255, 0, 0 },
 	[BRIGHT + GREEN]	= { 0, 255, 0 },
-- 
2.39.5




More information about the barebox mailing list