1#
2# Using the background style properties
3#
4style = lv.style_t()
5style.init()
6style.set_radius(5)
7
8# Make a gradient
9style.set_bg_opa(lv.OPA.COVER)
10style.set_bg_color(lv.palette_lighten(lv.PALETTE.GREY, 1))
11style.set_bg_grad_color(lv.palette_main(lv.PALETTE.BLUE))
12style.set_bg_grad_dir(lv.GRAD_DIR.VER)
13
14# Shift the gradient to the bottom
15style.set_bg_main_stop(128)
16style.set_bg_grad_stop(192)
17
18# Create an object with the new style
19obj = lv.obj(lv.scr_act())
20obj.add_style(style, 0)
21obj.center()
22