streamlit-component-gallery / pages /widget.color_picker.py
whitphx's picture
whitphx HF staff
Copy https://github.com/whitphx/stlite/tree/main/packages/sharing-editor/public/samples/011_component_gallery
dd0ef30
raw history blame
No virus
115 Bytes
import streamlit as st
color = st.color_picker('Pick A Color', '#00f900')
st.write('The current color is', color)