Hi there,
I’d love to know if there’s a way to change the color of the download button.
def download_image(x):
column1, column2, column3 = st.columns((3, 2, 2))
with column2:
with open(x, "rb") as file:
btn = st.download_button(
label="Download image",
data=file,
file_name=x,
mime="image/jpg"
)