diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-07-17 20:47:39 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-07-17 21:05:38 (GMT) |
| commit | e86917821f28d62dc32550705086e9b34e399025 (patch) | |
| tree | f7436886d71d60636753e3a0ce387a8dd540ca04 /src/displayapp/screens/Metronome.cpp | |
| parent | 05d2b5ce09834ba6634208929a356aa83327dcf1 (diff) | |
Tweak gamma on ST7789 and match UI colors
This change will increase the color accuracy of the PineTime and make UI
development with the simulator easier.
Cherry-picked and adapted by Michele Bini
Diffstat (limited to 'src/displayapp/screens/Metronome.cpp')
| -rw-r--r-- | src/displayapp/screens/Metronome.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/Metronome.cpp b/src/displayapp/screens/Metronome.cpp index 71321ae..54ccbb9 100644 --- a/src/displayapp/screens/Metronome.cpp +++ b/src/displayapp/screens/Metronome.cpp @@ -12,7 +12,7 @@ namespace { lv_obj_t* createLabel(const char* name, lv_obj_t* reference, lv_align_t align, lv_font_t* font, uint8_t x, uint8_t y) { lv_obj_t* label = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_font(label, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, font); - lv_obj_set_style_local_text_color(label, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_GRAY); + lv_obj_set_style_local_text_color(label, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); lv_label_set_text(label, name); lv_obj_align(label, reference, align, x, y); |
