13 lines
230 B
Python
13 lines
230 B
Python
import streamlit as st
|
|
|
|
def apply_styles():
|
|
page_bg_color = """
|
|
<style>
|
|
body {
|
|
background-color: #002F5F;
|
|
color: white;
|
|
}
|
|
</style>
|
|
"""
|
|
st.markdown(page_bg_color, unsafe_allow_html=True)
|