Spaces:
Configuration error
Configuration error
File size: 828 Bytes
2d883a3 1d25bea 4b4f1a5 3d5c119 faf8ffb 0d807f7 faf8ffb 292f7ac 4b4f1a5 9c55106 4b4f1a5 dc952d4 ecd4749 dc952d4 ecd4749 dc952d4 096b5e3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | import streamlit as st
from utils.allergens import *
from PIL import Image
# Inject custom CSS for background colors
st.markdown(
"""
<style>
/* Background color for the main content */
.main .block-container {
background-color: #35bafc;
}
/* Background color for the sidebar */
.css-1d391kg, .css-18e3th9 { /* Streamlit sidebar selectors */
background-color: #35bafc;
}
/* Adjust text color if needed for readability */
.css-1d391kg .css-145kmo2 {
color: #ffffff; /* Adjust text color for sidebar if needed */
}
</style>
""",
unsafe_allow_html=True
)
logo = Image.open("utils/epic_logo.jpeg")
st.image(logo, width=250)
# Title for the app
st.title("Tantalos")
st.write("Welcome to Tantalos. Please navigate using the menu on the left.")
|