Design tokens for Vicinage & StyleX.
npm install solarwindcssimport { apply } from 'vicinage'
import { font } from 'solarwindcss'
import { color } from 'solarwindcss/color.stylex'
function Example() {
return (
<div
{...apply(
font.mono,
{
color: color.green500,
backgroundColor: 'black',
},
//
)}
>
hello, world
</div>
)
}