Index: uspace/lib/libc/include/ipc/console.h
===================================================================
--- uspace/lib/libc/include/ipc/console.h	(revision d3e69353929ddbf51ebfe9f5f9ddabbfceeec750)
+++ uspace/lib/libc/include/ipc/console.h	(revision f2451459eff17f8a5c730a385925d2af36865089)
@@ -33,15 +33,21 @@
  */
 
-#ifndef LIBC_CONSOLE_H_
-#define LIBC_CONSOLE_H_
+#ifndef LIBC_IPC_CONSOLE_H_
+#define LIBC_IPC_CONSOLE_H_
 
-#define CONSOLE_GETCHAR		1026
-#define CONSOLE_PUTCHAR 	1027
-#define CONSOLE_CLEAR		1028
-#define CONSOLE_GOTO		1029
-#define CONSOLE_GETSIZE		1030
-#define CONSOLE_FLUSH		1031
-#define CONSOLE_SET_STYLE 	1032
-#define CONSOLE_CURSOR_VISIBILITY	1033
+#include <ipc/ipc.h>
+
+typedef enum {
+	CONSOLE_GETCHAR = IPC_FIRST_USER_METHOD,
+	CONSOLE_PUTCHAR,
+	CONSOLE_CLEAR,
+	CONSOLE_GOTO,
+	CONSOLE_GETSIZE,
+	CONSOLE_FLUSH,
+	CONSOLE_SET_STYLE,
+	CONSOLE_SET_COLOR,
+	CONSOLE_SET_RGB_COLOR,
+	CONSOLE_CURSOR_VISIBILITY
+} console_request_t;
 
 #endif
Index: uspace/lib/libc/include/ipc/fb.h
===================================================================
--- uspace/lib/libc/include/ipc/fb.h	(revision d3e69353929ddbf51ebfe9f5f9ddabbfceeec750)
+++ uspace/lib/libc/include/ipc/fb.h	(revision f2451459eff17f8a5c730a385925d2af36865089)
@@ -49,4 +49,6 @@
 	FB_VIEWPORT_DELETE,
 	FB_SET_STYLE,
+	FB_SET_COLOR,
+	FB_SET_RGB_COLOR,
 	FB_GET_RESOLUTION,
 	FB_DRAW_TEXT_DATA,
@@ -68,5 +70,4 @@
 } fb_request_t;
 
-
 #endif
 
