mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 06:51:56 +00:00
Use this short header style in all Kconfig files: # <description> # <copyright> # <license> ... Also change all <description>s from # Kconfig[.extension] - Foo-related options to just # Foo-related options It's clear enough that it's about Kconfig. The <description> cleanup was done with this command, along with some manual cleanup (big letter at the start, etc.) git ls-files '*Kconfig*' | \ xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
57 lines
1.2 KiB
Plaintext
57 lines
1.2 KiB
Plaintext
# Copyright (c) 2018 Jan Van Winkel <jan.van_winkel@dxplore.eu>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menu "Themes"
|
|
|
|
config LVGL_THEMES
|
|
bool "Enable build-in themes"
|
|
help
|
|
Enable build-in themes
|
|
|
|
if LVGL_THEMES
|
|
|
|
config LVGL_THEME_LIVE_UPDATE
|
|
bool "Enable runtime theme switching"
|
|
help
|
|
Enable runtime theme switching, this will consume 8 to 10kB of RAM.
|
|
|
|
config LVGL_THEME_DEFAULT
|
|
bool "Enable default theme support"
|
|
help
|
|
Enable default theme support.
|
|
Low RAM footprint theme.
|
|
|
|
config LVGL_THEME_ALIEN
|
|
bool "Enable alien theme support"
|
|
help
|
|
Enable alien theme, dark futuristic, support
|
|
|
|
config LVGL_THEME_NIGHT
|
|
bool "Enable night theme support"
|
|
help
|
|
Enable night theme, dark elegant, support
|
|
|
|
config LVGL_THEME_MONO
|
|
bool "Enable mono theme support"
|
|
help
|
|
Enable mono theme, monochrome, support
|
|
|
|
config LVGL_THEME_MATERIAL
|
|
bool "Enable material theme support"
|
|
help
|
|
Enable material theme, flat theme with bold colors and light shadow, support
|
|
|
|
config LVGL_THEME_ZEN
|
|
bool "Enable zen theme support"
|
|
help
|
|
Enable zen theme, peaceful light theme, support
|
|
|
|
config LVGL_THEME_NEMO
|
|
bool "Enable nemo theme support"
|
|
help
|
|
Enable water-like theme based on the movie "Finding Nemo"
|
|
|
|
endif
|
|
|
|
endmenu
|