Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

0.101.0

Compare
Choose a tag to compare
@seanmcintyre seanmcintyre released this 25 May 20:00
· 286 commits to main since this release

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)};
`;