base dependencies and entry file for NiceGUI web UI

This commit is contained in:
2024-09-16 10:12:40 -04:00
commit 94b1c845f8
2 changed files with 87 additions and 0 deletions

16
main.py Normal file
View File

@@ -0,0 +1,16 @@
from nicegui import ui
ui.colors(
primary="#ba0c2f",
secondary="#000000",
accent="#66435a",
dark="#554f47",
positive="#00bfc9",
negative="#e4002b",
info="#004e60",
warning="#b4bd00",
)
ui.label("Hello from NiceGUI")
ui.run()