UNPKG

@atlaskit/atlassian-navigation

Version:

A horizontal navigation component for Atlassian apps.

8 lines 213 B
import chromatism from 'chromatism'; export const hexToRGBA = (hex, opacity = 1) => { const rgba = { ...chromatism.convert(hex).rgb, a: opacity }; return `rgba(${Object.values(rgba).join(', ')})`; };