{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# `ui.colors`\n", "\n", "## 颜色主题\n", "\n", "设置 [Quasar](https://quasar.dev/) 使用的主要颜色(primary, secondary, accent等)。" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from nicegui import ui\n", "\n", "ui.button('Default', on_click=lambda: ui.colors())\n", "ui.button('Gray', on_click=lambda: ui.colors(primary='#555'))\n", "\n", "# ui.run()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "py311", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.7" } }, "nbformat": 4, "nbformat_minor": 2 }