From d5a9a2d118e026cd760c03814d32ace897bfce8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 31 Oct 2008 10:17:04 +0000 Subject: [PATCH] * Made the KDL colors a bit more eye friendly in 24/32 bit modes. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28391 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/debug/frame_buffer_console.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/system/kernel/debug/frame_buffer_console.cpp b/src/system/kernel/debug/frame_buffer_console.cpp index 359ca8a90e..3acc104981 100644 --- a/src/system/kernel/debug/frame_buffer_console.cpp +++ b/src/system/kernel/debug/frame_buffer_console.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2005-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved. + * Copyright 2005-2008, Axel Dörfler, axeld@pinc-software.de. * Distributed under the terms of the MIT License. */ @@ -67,7 +67,14 @@ static uint16 sPalette16[] = { }; static uint32 sPalette32[] = { // is also used by 24 bit modes - 0xffffff, 0x0000ff, 0x00ff00, 0x00ffff, 0xff0000, 0xff00ff, 0xffff00, 0x000000, + 0xffffff, // white + 0x336698, // blue + 0x4e9a00, // green + 0x06989a, // cyan + 0xcc0000, // red + 0x73447b, // magenta + 0xdaa800, // yellow + 0x000000, // black }; static struct console_info sConsole;