sanjaystarc commited on
Commit
ea42a15
Β·
verified Β·
1 Parent(s): b4ad252

Update core_agent.py

Browse files
Files changed (1) hide show
  1. core_agent.py +4 -4
core_agent.py CHANGED
@@ -28,9 +28,9 @@ warnings.filterwarnings("ignore")
28
  load_dotenv()
29
 
30
  # ─── Palette ─────────────────────────────────────────────────────────────────
31
- PALETTE = ["#4F8EF7", "#27C98F", "#F7654F", "#F7B84F", "#A78BFA", "#34D399"]
32
- DARK_BG = "#F7F8FC"
33
- CARD_BG = "#FFFFFF"
34
 
35
 
36
  # ─── LLM Setup ───────────────────────────────────────────────────────────────
@@ -276,7 +276,7 @@ def make_plotly_chart(chart_type: str, df: pd.DataFrame, profile: dict,
276
  fig.update_layout(
277
  paper_bgcolor=DARK_BG,
278
  plot_bgcolor=CARD_BG,
279
- font=dict(family="DM Sans, sans-serif", color="#1A202C"),
280
  margin=dict(l=40, r=40, t=60, b=40),
281
  )
282
  return fig
 
28
  load_dotenv()
29
 
30
  # ─── Palette ─────────────────────────────────────────────────────────────────
31
+ PALETTE = ["#111111", "#444444", "#777777", "#999999", "#BBBBBB", "#DDDDDD"]
32
+ DARK_BG = "#FFFFFF"
33
+ CARD_BG = "#F9F9F9"
34
 
35
 
36
  # ─── LLM Setup ───────────────────────────────────────────────────────────────
 
276
  fig.update_layout(
277
  paper_bgcolor=DARK_BG,
278
  plot_bgcolor=CARD_BG,
279
+ font=dict(family="DM Sans, sans-serif", color="#111111"),
280
  margin=dict(l=40, r=40, t=60, b=40),
281
  )
282
  return fig