How to change the color of indicator in checkbox as radio button

hotkey_lvgl

Hi
I want to change the default color blue of indicator in radio buttons into green, as shown in above image. Can anyone tell me the API used here to change the indicator color?

You can do this:

    lv_obj_set_style_bg_color(obj, lv_color_hex(0x00ff00), LV_PART_INDICATOR | LV_STATE_CHECKED);
    lv_obj_set_style_border_width(obj, 0, LV_PART_INDICATOR | LV_STATE_CHECKED);

Thanks @kisvegabor. I’ll try and let you know