diff --git a/src/lib/components/MiniPlot.svelte b/src/lib/components/MiniPlot.svelte index b8a8db59..c8a3d24e 100644 --- a/src/lib/components/MiniPlot.svelte +++ b/src/lib/components/MiniPlot.svelte @@ -47,7 +47,7 @@ layout: { background: { type: ColorType.Solid, - color: '#27272A', + color: '#09090B', }, lineColor: '#2B2B43', textColor: '#D9D9D9', @@ -111,15 +111,15 @@ function etfSelector() { etfTicker.update(value => 'SPY'); goto('/etf/SPY'); } - else if (title === 'Nasdaq 100') { + else if (title === 'Nasdaq') { etfTicker.update(value => 'QQQ'); goto('/etf/QQQ'); } - else if (title === 'Dow Jones') { + else if (title === 'Dow') { etfTicker.update(value => 'DIA'); goto('/etf/DIA'); } - else if (title === 'Russel 2000') { + else if (title === 'Russel') { etfTicker.update(value => 'IWM'); goto('/etf/IWM'); } @@ -138,15 +138,16 @@ if(chart && typeof window !== 'undefined') -