modify name and color

This commit is contained in:
2025-10-29 10:52:49 +08:00
parent a2017635f0
commit 246c0eb1e4

View File

@@ -205,7 +205,7 @@ def build_ui(node: CtrlGuiNode) -> None:
''')
# --- build UI ---
ui.label('HiveCore Robot 2025').classes('text-2xl').classes('self-end')
ui.label('HiveCore Robot').classes('text-2xl font-bold').style('color: orange').classes('self-end')
# ui.separator()
ui.label('Control Panel').classes('text-xl')
@@ -612,7 +612,7 @@ def main() -> None:
except ValueError:
port = 8080
print(f'Starting NiceGUI on {host}:{port}...')
ui.run(title='HiveCore Robot Control Panel', host=host, port=port, reload=False, uvicorn_logging_level='info')
ui.run(title='HiveCore Robot', host=host, port=port, reload=False, uvicorn_logging_level='info')
if __name__ in {"__main__", "__mp_main__"}: