diff --git a/source/arm11/atp.c b/source/arm11/atp.c index 42738c0..2577ffb 100644 --- a/source/arm11/atp.c +++ b/source/arm11/atp.c @@ -12,13 +12,13 @@ static char tb[TIPS_MAX] = {'\0'}; #define ATP_COLOR_SIZE (ATP_COLOR_WHITE+1) static uint16_t color_tbl[] = { - RGB8_to_565(0xe0, 0xf0, 0xe9), // 黑色 + RGB8_to_565(0xc2, 0xcc, 0xd0), // 亮色 RGB8_to_565(0xff, 0x33, 0), // 红色 RGB8_to_565(0xaf, 0xdd, 0x22), // 绿色 RGB8_to_565(0xfa, 0xff, 0x72), // 黄色 - RGB8_to_565(0x4b, 0x5c, 0xc4), // 蓝色 + RGB8_to_565(0x4c, 0x8d, 0xb4), // 蓝色 RGB8_to_565(0xe0, 0x00, 0x97), // 品红 - RGB8_to_565(0x21, 0xa6, 0x75), // 蓝绿 + RGB8_to_565(0x21, 0xa6, 0x75), // 青色 RGB8_to_565(0xf0, 0xfc, 0xff) // 白色 };