5#ifndef COLOR_PALETTE_H_
6#define COLOR_PALETTE_H_
20enum class DrawingLocation :
unsigned char {
52 std::map<DrawingLocation, uint16_t> palette_;
61 uint16_t get(DrawingLocation key)
const;
62 void set(DrawingLocation key, uint16_t value);
63 bool contains(DrawingLocation key);
69#define COLOR_PRIMARY m5avatar::DrawingLocation::kIrisBackground
70#define COLOR_SECONDARY m5avatar::DrawingLocation::kIris1
71#define COLOR_BACKGROUND m5avatar::DrawingLocation::kSkin
72#define COLOR_BALLOON_FOREGROUND m5avatar::DrawingLocation::kBalloonForeground
73#define COLOR_BALLOON_BACKGROUND m5avatar::DrawingLocation::kBalloonBackground
Definition: ColorPalette.h:50