diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-08-28 18:56:34 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-28 18:56:34 (GMT) |
| commit | ef9f809e14155ff304b8f047aa3beae3dabb78e8 (patch) | |
| tree | c155a5efa01b181994b9cb976d686a37fc89c89c /src/displayapp/screens/PineTimeStyle.h | |
| parent | 2870d3ae6c00f127883e6cedecda328994b0fec7 (diff) | |
| parent | 8ac1ae70cc97840c5464287331b17f6319669d2c (diff) | |
Merge pull request #458 from kieranc/pinetimestyle-colorpicker
Add color picker for PineTimeStyle watchface
Diffstat (limited to 'src/displayapp/screens/PineTimeStyle.h')
| -rw-r--r-- | src/displayapp/screens/PineTimeStyle.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/displayapp/screens/PineTimeStyle.h b/src/displayapp/screens/PineTimeStyle.h index cb74ead..16b6de1 100644 --- a/src/displayapp/screens/PineTimeStyle.h +++ b/src/displayapp/screens/PineTimeStyle.h @@ -68,6 +68,11 @@ namespace Pinetime { lv_obj_t* notificationIcon; lv_obj_t* stepGauge; lv_color_t needle_colors[1]; + lv_color_t pts_colors[17] = {LV_COLOR_WHITE, LV_COLOR_SILVER, LV_COLOR_GRAY, LV_COLOR_BLACK, + LV_COLOR_RED, LV_COLOR_MAROON, LV_COLOR_YELLOW, LV_COLOR_OLIVE, + LV_COLOR_LIME, LV_COLOR_GREEN, LV_COLOR_CYAN, LV_COLOR_TEAL, + LV_COLOR_BLUE, LV_COLOR_NAVY, LV_COLOR_MAGENTA, LV_COLOR_PURPLE, + LV_COLOR_ORANGE}; Controllers::DateTime& dateTimeController; Controllers::Battery& batteryController; |
