πCustomizing Styles
π Following the default design
Using Ant Design
Examples
// bootstrap.app.tsx
<UIProvider appId={appId} antd>
<Page/> // Or <Widget/>
</UIProvider>// light.less
.text-color {
color: "black";
}
// dark.less
.text-color {
color: "white";
}Using other UI systems
Last updated