QuantumLearner commited on
Commit
1e11844
·
verified ·
1 Parent(s): b3ee258

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -65,6 +65,8 @@ def limit_df_rows_for_display(df: pd.DataFrame, n: int) -> pd.DataFrame:
65
  return df.tail(n)
66
 
67
 
 
 
68
  # ---------- Title ----------
69
  st.title("VIX Regime Detection")
70
  st.write(
@@ -361,8 +363,8 @@ if run_analysis:
361
  height=500,
362
  margin=dict(l=60, r=20, t=60, b=90),
363
  template="plotly_dark",
364
- paper_bgcolor="rgba(0,0,0,1)",
365
- plot_bgcolor="rgba(0,0,0,1)",
366
  title_font_color="white",
367
  font=dict(color="white"),
368
  )
 
65
  return df.tail(n)
66
 
67
 
68
+ BG = "#0e1117"
69
+
70
  # ---------- Title ----------
71
  st.title("VIX Regime Detection")
72
  st.write(
 
363
  height=500,
364
  margin=dict(l=60, r=20, t=60, b=90),
365
  template="plotly_dark",
366
+ paper_bgcolor=BG, #"rgba(0,0,0,1)",
367
+ plot_bgcolor=BG,#"rgba(0,0,0,1)",
368
  title_font_color="white",
369
  font=dict(color="white"),
370
  )