From c3f3c3d5a98f3d097156542b188171f8ef694a91 Mon Sep 17 00:00:00 2001 From: francy51 Date: Sun, 8 Mar 2026 11:09:36 -0400 Subject: [PATCH] Refresh app theme and update dependencies --- app/analysis/page.tsx | 14 +- app/auth/signin/page.tsx | 2 +- app/financials/page.tsx | 10 +- app/globals.css | 61 +- app/graphing/page.tsx | 16 +- app/layout.tsx | 2 +- app/portfolio/page.tsx | 16 +- app/research/page.tsx | 14 +- app/watchlist/page.tsx | 2 +- bun.lock | 792 +++++++++--------- .../notifications/task-detail-modal.tsx | 4 +- .../task-notifications-trigger.tsx | 2 +- components/shell/app-shell.tsx | 8 +- components/ui/button.tsx | 2 +- components/ui/input.tsx | 2 +- components/ui/panel.tsx | 2 +- components/ui/status-pill.tsx | 6 +- next-env.d.ts | 2 +- package.json | 22 +- 19 files changed, 502 insertions(+), 477 deletions(-) diff --git a/app/analysis/page.tsx b/app/analysis/page.tsx index 813b1ab..ad954e8 100644 --- a/app/analysis/page.tsx +++ b/app/analysis/page.tsx @@ -89,11 +89,11 @@ const FINANCIAL_VALUE_SCALE_OPTIONS: Array<{ value: NumberScaleUnit; label: stri { value: 'billions', label: 'Billions (B)' } ]; -const CHART_TEXT = '#e8fff8'; -const CHART_MUTED = '#b4ced9'; -const CHART_GRID = 'rgba(126, 217, 255, 0.24)'; -const CHART_TOOLTIP_BG = 'rgba(6, 17, 24, 0.95)'; -const CHART_TOOLTIP_BORDER = 'rgba(123, 255, 217, 0.45)'; +const CHART_TEXT = '#f3f5f7'; +const CHART_MUTED = '#a1a9b3'; +const CHART_GRID = 'rgba(196, 202, 211, 0.18)'; +const CHART_TOOLTIP_BG = 'rgba(31, 34, 39, 0.96)'; +const CHART_TOOLTIP_BORDER = 'rgba(220, 226, 234, 0.24)'; function formatShortDate(value: string) { return format(new Date(value), 'MMM yyyy'); @@ -633,9 +633,9 @@ function AnalysisPageContent() { }} labelStyle={{ color: CHART_TEXT }} itemStyle={{ color: CHART_TEXT }} - cursor={{ stroke: 'rgba(104, 255, 213, 0.35)', strokeWidth: 1 }} + cursor={{ stroke: 'rgba(220, 226, 234, 0.28)', strokeWidth: 1 }} /> - + diff --git a/app/auth/signin/page.tsx b/app/auth/signin/page.tsx index 50a712b..154f47d 100644 --- a/app/auth/signin/page.tsx +++ b/app/auth/signin/page.tsx @@ -128,7 +128,7 @@ function SignInPageContent() { {error ?

{error}

: null} - {message ?

{message}

: null} + {message ?

{message}

: null}