I am developing a Streamlit app within Snowflake.
I would like to put colored text (red or green) into a text input widget as its initial value.
I know I can produce colored text in markdown with the :color[word] syntax.
But that does not work inside of the text input e.g.:
st.text_input("HELLO","This is red :red[test]");
st.write("This is red :red[test]");
st.write("This is green :green[test]");
Gets me this:
Is it possible to do this in any way?
Thank you!