mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
22 lines
662 B
Python
22 lines
662 B
Python
from prompt_toolkit.shortcuts import checkboxlist_dialog
|
|
from prompt_toolkit.styles import Style
|
|
|
|
results = checkboxlist_dialog(
|
|
title="CheckboxList dialog",
|
|
text="What would you like in your breakfast ?",
|
|
values=[
|
|
("eggs", "Eggs"),
|
|
("bacon", "Bacon"),
|
|
("croissants", "20 Croissants"),
|
|
("daily", "The breakfast of the day")
|
|
],
|
|
style=Style.from_dict({
|
|
'dialog': 'bg:#cdbbb3',
|
|
'button': 'bg:#bf99a4',
|
|
'checkbox': '#e8612c',
|
|
'dialog.body': 'bg:#a9cfd0',
|
|
'dialog shadow': 'bg:#c98982',
|
|
'frame.label': '#fcaca3',
|
|
'dialog.body label': '#fd8bb6',
|
|
})
|
|
).run() |