luisotorres's picture
Upload 6 files
6f0d9f0 verified
raw
history blame contribute delete
572 Bytes
import streamlit as st
from ui import build_ui
# Defining page settings
st.set_page_config(
page_title="PortfolioPro",
page_icon="💰",
layout='wide',
initial_sidebar_state='expanded'
)
# Set custom theme
st.markdown("""
<style>
:root {
--primary-color: #7792E3;
--background-color: #FFFFFF;
--secondary-background-color: #F0F2F6;
--text-color: #31333F;
--font: sans-serif;
}
</style>
""", unsafe_allow_html=True)
# Build the UI
build_ui()