This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
0.101.0
0.101.0 (May 25, 2021)
🆕 New Components
🪙 Tokens
tx
utility is now exported from@vimeo/iris/tokens
Example Use
import { rgba } from 'polished';
import { core, tx } from '@vimeo/iris/tokens';
const PrimaryTranslucent = styled.div`
background: ${(p) => rgba(tx(p.theme, core.color.format.primary), 0.5)};
color: ${core.color.text(100)};
`;