Themes
Different Textual built-in themes are available for your prompts. The default
theme can be overriden by setting one of the themes below through the
PromptSettings class:
from inquirer_textual import prompts
from inquirer_textual.common.PromptSettings import PromptSettings
if __name__ == '__main__':
result = prompts.select('Planet:', ['Mercury', 'Venus', 'Earth', 'Mars',
'Jupiter', 'Saturn', 'Uranus', 'Neptune'],
settings=PromptSettings(theme='catppuccin-latte'))
print(result)



















