mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
12 lines
275 B
C
12 lines
275 B
C
#ifndef __STYLE_H__
|
|
#define __STYLE_H__
|
|
|
|
#define BACKLIGHT_NORMAL 150
|
|
|
|
#define COLOR_BL_RED RGB16(0xE4, 0x57, 0x2E)
|
|
#define COLOR_BL_GREEN RGB16(0x4C, 0xC1, 0x48)
|
|
#define COLOR_BL_BLUE RGB16(0x21, 0x96, 0xF3)
|
|
#define COLOR_BL_ORANGE RGB16(0xFF, 0x98, 0x00)
|
|
|
|
#endif
|