@@ -211,7 +211,7 @@ function ActivityBarItemComponent(props: ActivityBarItemProps) {
211211 height : "44px" ,
212212 border : "none" ,
213213 background : props . isActive ? "rgba(255, 255, 255, 0.12)" : "transparent" ,
214- color : props . isActive ? "#FAFAFA " : tokens . colors . icon . inactive ,
214+ color : props . isActive ? "var(--figma-text-primary) " : tokens . colors . icon . inactive ,
215215 opacity : props . isDragging ? "0.5" : props . isActive ? "1" : "0.7" ,
216216 cursor : "pointer" ,
217217 "border-radius" : tokens . radius . sm ,
@@ -255,7 +255,7 @@ function ActivityBarItemComponent(props: ActivityBarItemProps) {
255255 "justify-content" : "center" ,
256256 padding : "0 4px" ,
257257 background : tokens . colors . semantic . primary ,
258- color : "#FFFFFF " ,
258+ color : "var(--figma-text-primary) " ,
259259 "font-size" : "10px" ,
260260 "font-weight" : "600" ,
261261 "border-radius" : "var(--figma-radius-md)" ,
@@ -302,7 +302,7 @@ function ActivityBarItemComponent(props: ActivityBarItemProps) {
302302 "margin-left" : tokens . spacing . md ,
303303 padding : `2px ${ tokens . spacing . sm } ` ,
304304 background : tokens . colors . semantic . primary ,
305- color : "#FFFFFF " ,
305+ color : "var(--figma-text-primary) " ,
306306 "font-size" : tokens . typography . fontSize . sm ,
307307 "border-radius" : tokens . radius . sm ,
308308 } }
@@ -842,7 +842,7 @@ export function ActivityBar(props: ActivityBarProps) {
842842 } }
843843 onMouseEnter = { ( e ) => {
844844 e . currentTarget . style . background = "rgba(255, 255, 255, 0.08)" ;
845- e . currentTarget . style . color = "#FAFAFA " ;
845+ e . currentTarget . style . color = "var(--figma-text-primary) " ;
846846 e . currentTarget . style . opacity = "1" ;
847847 } }
848848 onMouseLeave = { ( e ) => {
@@ -878,7 +878,7 @@ export function ActivityBar(props: ActivityBarProps) {
878878 } }
879879 onMouseEnter = { ( e ) => {
880880 e . currentTarget . style . background = "rgba(255, 255, 255, 0.08)" ;
881- e . currentTarget . style . color = "#FAFAFA " ;
881+ e . currentTarget . style . color = "var(--figma-text-primary) " ;
882882 e . currentTarget . style . opacity = "1" ;
883883 } }
884884 onMouseLeave = { ( e ) => {
0 commit comments