fix use of tokens

This commit is contained in:
Hristo Nedelkov 2023-09-08 08:55:59 +03:00
parent c17125cba8
commit a63316fb9e
1 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ const Activation = () => {
clearTimeout(timer) clearTimeout(timer)
} }
}, []) }, [])
console.log(themes.light.blue.key) console.log("$red")
return ( return (
<Stack style={styles.confettiContainer} width={'100%'}> <Stack style={styles.confettiContainer} width={'100%'}>
{showConfetti && <Confetti style={styles.confettiCanvas} />} {showConfetti && <Confetti style={styles.confettiCanvas} />}
@ -55,14 +55,14 @@ const Activation = () => {
<ActivationCard <ActivationCard
text="Execution Sync Status" text="Execution Sync Status"
isGaugeIncluded={true} isGaugeIncluded={true}
gaugeColor={themes.light.blue.val} gaugeColor={'$blue'}
gaugeSynced={123.524} gaugeSynced={123.524}
gaugeTotal={172.503} gaugeTotal={172.503}
/> />
<ActivationCard <ActivationCard
text="Execution Sync Status" text="Execution Sync Status"
isGaugeIncluded={true} isGaugeIncluded={true}
gaugeColor={themes.light.red.val} gaugeColor={'$red'}
gaugeSynced={123.524} gaugeSynced={123.524}
gaugeTotal={172.503} gaugeTotal={172.503}
/> />