InfiniTime.git

ref: fc5424cb72e477c5f1bbfaeddb5c50b851a965ae

src/displayapp/Colors.cpp


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include "displayapp/Colors.h"

using namespace Pinetime::Applications;
using namespace Pinetime::Controllers;

lv_color_t Pinetime::Applications::Convert(Pinetime::Controllers::Settings::Colors color) {
  switch (color) {
    case Pinetime::Controllers::Settings::Colors::White:
      return LV_COLOR_WHITE;
    case Pinetime::Controllers::Settings::Colors::Silver:
      return LV_COLOR_SILVER;
    case Pinetime::Controllers::Settings::Colors::Gray:
      return LV_COLOR_GRAY;
    case Pinetime::Controllers::Settings::Colors::Black:
      return LV_COLOR_BLACK;
    case Pinetime::Controllers::Settings::Colors::Red:
      return LV_COLOR_RED;
    case Pinetime::Controllers::Settings::Colors::Maroon:
      return LV_COLOR_MAKE(0xb0, 0x0, 0x0);
    case Pinetime::Controllers::Settings::Colors::Yellow:
      return LV_COLOR_YELLOW;
    case Pinetime::Controllers::Settings::Colors::Olive:
      return LV_COLOR_MAKE(0xb0, 0xb0, 0x0);
    case Pinetime::Controllers::Settings::Colors::Lime:
      return LV_COLOR_LIME;
    case Pinetime::Controllers::Settings::Colors::Green:
      return LV_COLOR_MAKE(0x0, 0xb0, 0x0);
    case Pinetime::Controllers::Settings::Colors::Cyan:
      return LV_COLOR_CYAN;
    case Pinetime::Controllers::Settings::Colors::Teal:
      return LV_COLOR_MAKE(0x0, 0xb0, 0xb0);
    case Pinetime::Controllers::Settings::Colors::Blue:
      return LV_COLOR_BLUE;
    case Pinetime::Controllers::Settings::Colors::Navy:
      return LV_COLOR_MAKE(0x0, 0x0, 0xb0);
    case Pinetime::Controllers::Settings::Colors::Magenta:
      return LV_COLOR_MAGENTA;
    case Pinetime::Controllers::Settings::Colors::Purple:
      return LV_COLOR_MAKE(0xb0, 0x0, 0xb0);
    case Pinetime::Controllers::Settings::Colors::Orange:
      return LV_COLOR_ORANGE;
    case Pinetime::Controllers::Settings::Colors::Pink:
      return LV_COLOR_MAKE(0xFF, 0xAE, 0xC9);
    default:
      return LV_COLOR_WHITE;
  }
}