25 lines
357 B
C
25 lines
357 B
C
|
|
#ifndef BLINKY_THEME_COLOR_H_
|
||
|
|
#define BLINKY_THEME_COLOR_H_
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#define BLINKY_THEME_DEFAULT_R 0x4CU
|
||
|
|
#define BLINKY_THEME_DEFAULT_G 0x9EU
|
||
|
|
#define BLINKY_THEME_DEFAULT_B 0xF5U
|
||
|
|
|
||
|
|
struct theme_rgb {
|
||
|
|
uint8_t r;
|
||
|
|
uint8_t g;
|
||
|
|
uint8_t b;
|
||
|
|
};
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* BLINKY_THEME_COLOR_H_ */
|