Lines Matching refs:theme
102 …l use the value based upon the current theme, but for now it just selects the internal default reg…
305 Themes are a collection of styles. If there is an active theme LVGL applies it on every created wid…
308 Every display can have a different theme. For example, you could have a colorful theme on a TFT and…
310 To set a theme for a display, two steps are required:
311 1. Initialize a theme
312 2. Assign the initialized theme to a display.
314 …ization functions can have different prototypes. This example shows how to set the "default" theme:
321 lv_disp_set_theme(display, th); /*Assign the theme to the display*/
325 The included themes are enabled in `lv_conf.h`. If the default theme is enabled by `LV_USE_THEME_DE…
330 If a custom theme is created, a parent theme can be selected. The parent theme's styles will be add…
331 Any number of themes can be chained this way. E.g. default theme -> custom theme -> dark theme.