blob: 09c7a14e1306a708d79ec4f9a059f9497e01095d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef DEF_MELON_KERNEL_CONFIG
#define DEF_MELON_KERNEL_CONFIG
#define THIS_IS_MELON
#undef THIS_IS_NOT_MELON
#define OPT_DEBUG
//Color scheme
#define TXTLOGO_FGCOLOR 9
#define TXTLOGO_BGCOLOR 0
#define KVT_FGCOLOR 0
#define KVT_BGCOLOR 7
#define KVT_OKCOLOR 1
#define KVT_BLECOLOR 4 //BLE = Boot Log Entry
#define KVT_ENTRYCOLOR 6
#define KVT_LIGHTCOLOR 8
#endif
|