Py.Cafe

amward/

dash-web-app-custom-bg-color

Dash Web App with Custom Background Color

DocsPricing
  • assets/
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
# check out https://dash.plotly.com/ for documentation
# And check out https://py.cafe/maartenbreddels for more examples
from dash import Dash, Input, Output, callback, dcc, html

app = Dash(__name__)
app.layout=html.Div("Hello Dash", className="bg-color")