diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-02 22:51:28 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-02 22:51:28 +0200 |
commit | 92abedffec913fe7337117403c5e07185356c81b (patch) | |
tree | 1527937c1a1a7ab8168891f6465e198b88bbfea2 /Source/Kernel/Config.h | |
parent | 021831ab981b9df22cd1ac5e5ac51f0f84ef49a7 (diff) | |
download | Melon-92abedffec913fe7337117403c5e07185356c81b.tar.gz Melon-92abedffec913fe7337117403c5e07185356c81b.zip |
The kernel shell is now in an independent class, KernelShell::
Diffstat (limited to 'Source/Kernel/Config.h')
-rw-r--r-- | Source/Kernel/Config.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Source/Kernel/Config.h b/Source/Kernel/Config.h index 09c7a14..e5943fb 100644 --- a/Source/Kernel/Config.h +++ b/Source/Kernel/Config.h @@ -9,11 +9,15 @@ //Color scheme #define TXTLOGO_FGCOLOR 9 #define TXTLOGO_BGCOLOR 0 -#define KVT_FGCOLOR 0 -#define KVT_BGCOLOR 7 -#define KVT_OKCOLOR 1 +#define KVT_FGCOLOR 7 +#define KVT_BGCOLOR 0 +#define KVT_OKCOLOR 2 #define KVT_BLECOLOR 4 //BLE = Boot Log Entry -#define KVT_ENTRYCOLOR 6 #define KVT_LIGHTCOLOR 8 +#define SHELL_FGCOLOR 0 +#define SHELL_BGCOLOR 7 +#define SHELL_LIGHTCOLOR 8 +#define SHELL_ENTRYCOLOR 6 + #endif |