device_config/rk_nku_menu/assets/style.toml
Dmitry Akimov 0922c81c0a # tui_menu 0.2.0
1. Переход на Cursive
2. Менеджер навигации по меню: вызывающая сторона может осуществлять навигацию по меню вне Cursive event loop, например, в потоке обработчика внешнего прерывания GPIO
2025-10-31 18:28:04 +03:00

25 lines
No EOL
810 B
TOML

# First come some various options
shadow = false # Don't draw shadows around stacked views
borders = "simple" # Alternatives are "none" and "outset"
# Here we define the color palette.
[colors]
background = "#000000"
# If the value is an array, the first valid color will be used.
# If the terminal doesn't support custom color,
# non-base colors will be skipped.
shadow = ["#000000", "black"]
view = "#d3d7cf"
# Array and simple values have the same effect.
primary = ["#111111"]
secondary = "#EEEEEE"
tertiary = "#444444"
# Hex values can use lower or uppercase.
title_primary = "#0000FF"
title_secondary = "#ffff55"
# Lower precision values can use only 3 digits.
highlight = "#00F"
highlight_inactive = "#5555FF"