mandelbrot / script.py
Marc Skov Madsen
document issue
ffec32f
raw
history blame contribute delete
411 Bytes
import panel as pn
import colorcet as cc
pn.extension()
CMAP_CSS = (
"div, div:hover {background: var(--panel-surface-color); color: current}" if pn.config.theme == "dark" else ""
)
cmap = pn.widgets.ColorMap(options=cc.palette, ncols=3, swatch_width=100, margin=(0, 0, 200, 0), stylesheet=[CMAP_CSS])
pn.template.FastListTemplate(
sidebar=[cmap],
main_layout=None,
theme="dark"
).servable()