Home
last modified time | relevance | path

Searched refs:lv_color_hex3 (Results 1 – 25 of 30) sorted by relevance

12

/lvgl-latest/examples/others/observer/
Dlv_example_observer_6.c67 lv_style_set_bg_color(&styles->style_main, lv_color_hex3(0xfff)); in my_panel_style_observer_cb()
68 lv_style_set_shadow_color(&styles->style_main, lv_color_hex3(0x888)); in my_panel_style_observer_cb()
69 lv_style_set_text_color(&styles->style_main, lv_color_hex3(0x222)); in my_panel_style_observer_cb()
70 lv_style_set_bg_color(&styles->style_scrollbar, lv_color_hex3(0x888)); in my_panel_style_observer_cb()
74 lv_style_set_shadow_color(&styles->style_main, lv_color_hex3(0xaaa)); in my_panel_style_observer_cb()
75 lv_style_set_text_color(&styles->style_main, lv_color_hex3(0xeee)); in my_panel_style_observer_cb()
76 lv_style_set_bg_color(&styles->style_scrollbar, lv_color_hex3(0xaaa)); in my_panel_style_observer_cb()
140 lv_style_set_text_color(&styles->style_main, lv_color_hex3(0xfff)); in my_button_style_observer_cb()
148 lv_style_set_text_color(&styles->style_main, lv_color_hex3(0xfff)); in my_button_style_observer_cb()
Dlv_example_observer_5.c53 lv_obj_set_style_shadow_color(win, lv_color_hex3(0x888), 0); in fw_update_btn_clicked_event_cb()
/lvgl-latest/examples/widgets/roller/
Dlv_example_roller_2.c24 lv_style_set_bg_color(&style_sel, lv_color_hex3(0xf88)); in lv_example_roller_2()
26 lv_style_set_border_color(&style_sel, lv_color_hex3(0xf00)); in lv_example_roller_2()
38 lv_obj_set_style_bg_color(roller, lv_color_hex3(0x0f0), 0); in lv_example_roller_2()
39 lv_obj_set_style_bg_grad_color(roller, lv_color_hex3(0xafa), 0); in lv_example_roller_2()
/lvgl-latest/demos/render/
Dlv_demo_render.c40 lv_color_t colors[] = {lv_color_hex3(0x000), in fill_obj_create()
41 lv_color_hex3(0xfff), in fill_obj_create()
42 lv_color_hex3(0xf00), in fill_obj_create()
43 lv_color_hex3(0x0f0), in fill_obj_create()
44 lv_color_hex3(0x00f), in fill_obj_create()
45 lv_color_hex3(0xff0), in fill_obj_create()
46 lv_color_hex3(0x0ff), in fill_obj_create()
47 lv_color_hex3(0xf0f), in fill_obj_create()
84 lv_obj_set_style_bg_grad_color(obj, lv_color_hex3(0x888), 0); in fill_cb()
92 lv_obj_set_style_bg_grad_color(obj, lv_color_hex3(0x888), 0); in fill_cb()
[all …]
/lvgl-latest/tests/src/test_cases/
Dtest_observer.c166 lv_subject_init_color(&subject, lv_color_hex3(0x123)); in test_observer_color()
167 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x123), lv_subject_get_color(&subject)); in test_observer_color()
168 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x123), lv_subject_get_previous_color(&subject)); in test_observer_color()
170 lv_subject_set_color(&subject, lv_color_hex3(0x456)); in test_observer_color()
171 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x456), lv_subject_get_color(&subject)); in test_observer_color()
172 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x123), lv_subject_get_previous_color(&subject)); in test_observer_color()
174 lv_subject_set_color(&subject, lv_color_hex3(0xabc)); in test_observer_color()
175 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0xabc), lv_subject_get_color(&subject)); in test_observer_color()
176 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0x456), lv_subject_get_previous_color(&subject)); in test_observer_color()
180 TEST_ASSERT_EQUAL_COLOR(lv_color_hex3(0xabc), lv_subject_get_color(&subject)); in test_observer_color()
[all …]
Dtest_bindings.c255 line_draw_dsc.color = lv_color_hex3(0xCA8); in draw_to_canvas()
/lvgl-latest/tests/src/test_cases/draw/
Dtest_layer_transform.c23 lv_obj_set_style_border_color(obj, lv_color_hex3(0xf00), 0); in test_no_residual_border_on_scale_down()
24 lv_obj_set_style_bg_color(obj, lv_color_hex3(0x0f0), 0); in test_no_residual_border_on_scale_down()
Dtest_draw_layer.c23 lv_obj_set_style_bg_color(obj, lv_color_hex3(0xf88), 0); in test_obj_create()
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_bar.c335 lv_obj_set_style_bg_color(bar, lv_color_hex3(0x0ff), LV_PART_MAIN); in styled_bar_create()
340 lv_obj_set_style_bg_color(bar, lv_color_hex3(0xf0f), LV_PART_INDICATOR); in styled_bar_create()
341 lv_obj_set_style_bg_grad_color(bar, lv_color_hex3(0x8f8), LV_PART_INDICATOR); in styled_bar_create()
345 lv_obj_set_style_border_color(bar, lv_color_hex3(0x0f0), LV_PART_INDICATOR); in styled_bar_create()
349 lv_obj_set_style_outline_color(bar, lv_color_hex3(0xff0), LV_PART_INDICATOR); in styled_bar_create()
353 lv_obj_set_style_shadow_color(bar, lv_color_hex3(0xf00), LV_PART_INDICATOR); in styled_bar_create()
Dtest_obj_tree.c30 lv_color_t c2 = lv_color_hex3(0x444); in test_obj_tree_2()
/lvgl-latest/examples/widgets/canvas/
Dlv_example_canvas_4.c19 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_4()
Dlv_example_canvas_6.c18 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_6()
Dlv_example_canvas_5.c19 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_5()
Dlv_example_canvas_7.c19 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_7()
Dlv_example_canvas_3.c20 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_3()
Dlv_example_canvas_8.c21 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_8()
Dlv_example_canvas_1.c57 lv_canvas_fill_bg(canvas, lv_color_hex3(0xccc), LV_OPA_COVER); in lv_example_canvas_1()
/lvgl-latest/demos/transform/
Dlv_demo_transform.c62 lv_style_set_shadow_color(&style_card, lv_color_hex3(0xccc)); in lv_demo_transform()
70 lv_style_set_shadow_color(&style_avatar, lv_color_hex3(0xbbb)); in lv_demo_transform()
/lvgl-latest/examples/widgets/slider/
Dlv_example_slider_2.c20 lv_style_set_bg_color(&style_main, lv_color_hex3(0xbbb)); in lv_example_slider_2()
Dlv_example_slider_3.c61 label_draw_dsc.color = lv_color_hex3(0x888); in slider_event_cb()
/lvgl-latest/demos/flex_layout/
Dlv_demo_flex_layout_view_ctrl_pad.c175 lv_obj_set_style_outline_color(cont_spinbox, lv_color_hex3(0xddd), LV_PART_MAIN); in spinbox_ctrl_create()
186 lv_style_set_outline_color(&btn_style, lv_color_hex3(0xddd)); in spinbox_ctrl_create()
205 lv_obj_set_style_outline_color(spinbox, lv_color_hex3(0xddd), LV_PART_MAIN); in spinbox_ctrl_create()
Dlv_demo_flex_layout_view.c69 lv_obj_set_style_shadow_color(obj, lv_color_hex3(0xaaa), 0); in view_create()
/lvgl-latest/demos/multilang/
Dlv_demo_multilang.c188 lv_style_set_shadow_color(&style_card, lv_color_hex3(0xccc)); in lv_demo_multilang()
212 lv_style_set_shadow_color(&style_avatar, lv_color_hex3(0xbbb)); in lv_demo_multilang()
/lvgl-latest/src/misc/
Dlv_color.h319 lv_color_t lv_color_hex3(uint32_t c);
/lvgl-latest/demos/music/
Dlv_demo_music_list.c86 lv_style_set_bg_color(&style_scrollbar, lv_color_hex3(0xeee)); in lv_demo_music_list_create()

12