okr/styles.py
2024-12-30 23:15:03 +01:00

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)