Lines Matching refs:style
6 style = lv.style_t() variable
7 style.init()
9 style.set_radius(3)
11 style.set_bg_opa(lv.OPA.COVER)
12 style.set_bg_color(lv.palette_main(lv.PALETTE.BLUE))
13 style.set_bg_grad_color(lv.palette_darken(lv.PALETTE.BLUE, 2))
14 style.set_bg_grad_dir(lv.GRAD_DIR.VER)
16 style.set_border_opa(lv.OPA._40)
17 style.set_border_width(2)
18 style.set_border_color(lv.palette_main(lv.PALETTE.GREY))
20 style.set_shadow_width(8)
21 style.set_shadow_color(lv.palette_main(lv.PALETTE.GREY))
22 style.set_shadow_ofs_y(8)
24 style.set_outline_opa(lv.OPA.COVER)
25 style.set_outline_color(lv.palette_main(lv.PALETTE.BLUE))
27 style.set_text_color(lv.color_white())
28 style.set_pad_all(10)
52 btn1.add_style(style, 0)