blob: 40689e3322794ed9a3ab7f8da2d2107e5f31b430 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef DEF_MELON_KERNEL_CONFIG
#define DEF_MELON_KERNEL_CONFIG
#define OPT_DEBUG
//Color scheme
#define TXTLOGO_FGCOLOR 9 //Colors for the melon logo
#define TXTLOGO_BGCOLOR 0
#define STATUSBAR_BGCOLOR 7
#define STATUSBAR_FGCOLOR 0
#define KVT_FGCOLOR 7 //Colors for the vt for selecting a screen mode
#define KVT_BGCOLOR 0
#define KVT_LIGHTCOLOR 9
#define KVT_ENTRYCOLOR 6
//These colors are used for the shell running the init program
#define SHELL_FGCOLOR 0
#define SHELL_BGCOLOR 7
#define PANIC_BGCOLOR 4 //Colors for the panic screen
#define PANIC_FGCOLOR 15
#define BSOD_BGCOLOR 1 //Colors for the panic_dump screen
#define BSOD_FGCOLOR 7
#define HALT_BGCOLOR 6 //Colors for the halt screen
#define HALT_FGCOLOR 7
#endif
|