@@ -374,7 +374,7 @@ export function ChartConfigPanel({ columns, config, onChange, className }: Chart
374374 const newColumns = config . yAxisColumns . filter ( ( _ , i ) => i !== index ) ;
375375 updateConfig ( { yAxisColumns : newColumns } ) ;
376376 } }
377- className = "rounded p-1 text-text-dimmed hover:bg-charcoal-700 hover:text-text-bright"
377+ className = "rounded p-1 text-text-dimmed hover:bg-hover-bright hover:text-text-bright"
378378 title = "Remove series"
379379 >
380380 < XIcon className = "h-3.5 w-3.5" />
@@ -400,7 +400,7 @@ export function ChartConfigPanel({ columns, config, onChange, className }: Chart
400400 } ) ;
401401 }
402402 } }
403- className = "flex items-center gap-1 self-start rounded px-1 py-0.5 text-xs text-text-dimmed hover:bg-charcoal-700 hover:text-text-bright"
403+ className = "flex items-center gap-1 self-start rounded px-1 py-0.5 text-xs text-text-dimmed hover:bg-hover-bright hover:text-text-bright"
404404 >
405405 < Plus className = "h-3 w-3" />
406406 Add series
@@ -546,7 +546,7 @@ function SortDirectionToggle({
546546 "rounded px-2 py-1 text-xs transition-colors" ,
547547 direction === "asc"
548548 ? "bg-charcoal-700 text-text-bright"
549- : "text-text-dimmed hover:bg-charcoal-800 hover:text-text-bright"
549+ : "text-text-dimmed hover:bg-hover hover:text-text-bright"
550550 ) }
551551 title = "Ascending"
552552 >
@@ -559,7 +559,7 @@ function SortDirectionToggle({
559559 "rounded px-2 py-1 text-xs transition-colors" ,
560560 direction === "desc"
561561 ? "bg-charcoal-700 text-text-bright"
562- : "text-text-dimmed hover:bg-charcoal-800 hover:text-text-bright"
562+ : "text-text-dimmed hover:bg-hover hover:text-text-bright"
563563 ) }
564564 title = "Descending"
565565 >
0 commit comments