修改颜色数字,调整亮度

This commit is contained in:
anod 2022-10-14 15:07:01 +08:00
parent 3fda648a74
commit 9b6385e179

View File

@ -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) // 白色
};