Added highlighted green monochrome palette. (nw)

This commit is contained in:
Curt Coder 2012-12-07 16:01:59 +00:00
parent dec33454ae
commit 4ae5880b27
2 changed files with 7 additions and 0 deletions

View File

@ -165,6 +165,12 @@ const rgb_t RGB_MONOCHROME_GREEN[] =
MAKE_RGB(0x00, 0xff, 0x00)
};
const rgb_t RGB_MONOCHROME_GREEN_HIGHLIGHT[] =
{
RGB_BLACK,
MAKE_RGB(0x00, 0xc0, 0x00),
MAKE_RGB(0x00, 0xff, 0x00)
};
/*-------------------------------------------------
monochrome_yellow - 2-color black & yellow

View File

@ -49,6 +49,7 @@ PALETTE_INIT( RRRRR_GGGGGG_BBBBB );
extern const rgb_t RGB_MONOCHROME_WHITE[];
extern const rgb_t RGB_MONOCHROME_AMBER[];
extern const rgb_t RGB_MONOCHROME_GREEN[];
extern const rgb_t RGB_MONOCHROME_GREEN_HIGHLIGHT[];
extern const rgb_t RGB_MONOCHROME_YELLOW[];
#endif /* __VIDEO_GENERIC_H__ */