fschwartzer commited on
Commit
0697975
1 Parent(s): 9c795d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py CHANGED
@@ -4,6 +4,28 @@ import numpy as np
4
  import openpyxl
5
  from geopy.distance import geodesic
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  # Create a DataFrame with sample data
8
  data = pd.read_excel('ven_ter_fim_PEDÓ.xlsx')
9
 
 
4
  import openpyxl
5
  from geopy.distance import geodesic
6
 
7
+ # Set wide mode
8
+ st.set_page_config(layout="wide")
9
+
10
+ # Set dark theme
11
+ st.markdown(
12
+ """
13
+ <style>
14
+ body {
15
+ color: white;
16
+ background-color: #1e1e1e;
17
+ }
18
+ .st-df-header, .st-df-body, .st-df-caption {
19
+ color: #f8f9fa; /* Bootstrap table header text color */
20
+ }
21
+ .st-eb {
22
+ background-color: #343a40; /* Streamlit exception box background color */
23
+ }
24
+ </style>
25
+ """,
26
+ unsafe_allow_html=True
27
+ )
28
+
29
  # Create a DataFrame with sample data
30
  data = pd.read_excel('ven_ter_fim_PEDÓ.xlsx')
31