Update app.py
Browse files
app.py
CHANGED
@@ -35,6 +35,23 @@ import time
|
|
35 |
# Defining wide mode
|
36 |
st.set_page_config(layout="wide")
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
# Criar o menu na barra lateral
|
39 |
st.sidebar.title("📌 Menu")
|
40 |
page = st.sidebar.radio(
|
|
|
35 |
# Defining wide mode
|
36 |
st.set_page_config(layout="wide")
|
37 |
|
38 |
+
dark_theme = """
|
39 |
+
<style>
|
40 |
+
body, .stApp {
|
41 |
+
background-color: #0e1117;
|
42 |
+
color: white;
|
43 |
+
}
|
44 |
+
.stTextInput, .stButton>button {
|
45 |
+
background-color: #222;
|
46 |
+
color: white;
|
47 |
+
}
|
48 |
+
.stMarkdown, .stTextArea, .stSelectbox, .stCheckbox {
|
49 |
+
color: white;
|
50 |
+
}
|
51 |
+
</style>
|
52 |
+
"""
|
53 |
+
st.markdown(dark_theme, unsafe_allow_html=True)
|
54 |
+
|
55 |
# Criar o menu na barra lateral
|
56 |
st.sidebar.title("📌 Menu")
|
57 |
page = st.sidebar.radio(
|