solarwindcss
v0.36.10
Published
Design tokens for Vicinage & StyleX
Downloads
630
Maintainers
Readme
SolarWind CSS ☉≈ ·

Design tokens for Vicinage & StyleX.
Install
npm install solarwindcssUsage
import { 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>
)
}