From 9b6385e17918a69be06fb0d5f3b0af711c926cb3 Mon Sep 17 00:00:00 2001 From: anod <182859762@qq.com> Date: Fri, 14 Oct 2022 15:07:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A2=9C=E8=89=B2=E6=95=B0?= =?UTF-8?q?=E5=AD=97=EF=BC=8C=E8=B0=83=E6=95=B4=E4=BA=AE=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/arm11/atp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) // 白色 };