@@ -54,8 +54,8 @@ function TitleCell({ icon, title, unit }: TitleCellProps) {
5454 < div >
5555 < div className = "flex grow items-center" >
5656 < span className = "mr-2 flex h-4 w-4 items-center text-accent" > { icon } </ span >
57- < span className = "!normal-case text-mono-sm text-secondary " > { title } </ span >
58- < span className = "ml-1 !normal-case text-mono-sm text-quaternary " > ({ unit } )</ span >
57+ < span className = "!normal-case text-mono-sm text-default " > { title } </ span >
58+ < span className = "ml-1 !normal-case text-mono-sm text-tertiary " > ({ unit } )</ span >
5959 </ div >
6060 </ div >
6161 )
@@ -65,8 +65,8 @@ function PctCell({ pct }: { pct: number }) {
6565 // NaN happens when both top and bottom are 0
6666 if ( Number . isNaN ( pct ) ) {
6767 return (
68- < div className = "flex -translate-y-0.5 items-baseline text-quaternary " >
69- < div className = "font-light text-sans-2xl" > —</ div >
68+ < div className = "flex -translate-y-0.5 items-baseline text-tertiary " >
69+ < div className = "font-light text-sans-2xl text-raise " > —</ div >
7070 < div className = "text-sans-xl" > %</ div >
7171 </ div >
7272 )
@@ -75,8 +75,8 @@ function PctCell({ pct }: { pct: number }) {
7575 const [ wholeNumber , decimal ] = splitDecimal ( pct )
7676 return (
7777 < div className = "flex -translate-y-0.5 items-baseline" >
78- < div className = "font-light text-sans-2xl" > { wholeNumber } </ div >
79- < div className = "text-sans-xl text-quaternary " > { decimal } %</ div >
78+ < div className = "font-light text-sans-2xl text-raise " > { wholeNumber } </ div >
79+ < div className = "text-sans-xl text-tertiary " > { decimal } %</ div >
8080 </ div >
8181 )
8282}
@@ -102,8 +102,8 @@ type ValueCellProps = {
102102function ValueCell ( { label, value, unit } : ValueCellProps ) {
103103 return (
104104 < div className = "p-3 text-mono-sm" >
105- < div className = "mb-px text-quaternary " > { label } </ div >
106- < div className = "!normal-case text-secondary " >
105+ < div className = "mb-px text-tertiary " > { label } </ div >
106+ < div className = "!normal-case text-default " >
107107 < BigNum num = { value } />
108108 { unit }
109109 </ div >
0 commit comments