viewof opt = Inputs.form([
Inputs.radio(['light', 'dark'], {label: html`<i>Select theme:</i>`}),
Inputs.toggle({label: "Include logo?"}),
Inputs.range([25, 100], {value: 75, label: html`<span style="background-color: rgb(250, 207, 57);">Logo size:</span>`, step: 5}),
Inputs.range([0, 100], {label: "Value:", value: 1}),
Inputs.text({label: "Text", value: "Text to plot..."}),
Inputs.button("Click me"),
Inputs.checkbox(["salty", "sweet", "bitter", "sour", "umami"], {label: "Flavors"}),
Inputs.select([null].concat(island), {label: "Home state"}),
Inputs.select(island, {label: "Visited states", multiple: 5}),
Inputs.textarea({label: "Biography", placeholder: "What’s your story?"}),
Inputs.date({label: "Birthday"}),
Inputs.color({label: "Favorite color", value: "#4682b4"}),
Inputs.file({label: "CSV file", accept: ".csv", required: true}),
Inputs.search(island, {placeholder: "Search U.S. capitals"}),
])