UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

7 lines 271 B
import { FastColor } from '@ant-design/fast-color'; export const getAsSolidColor = (color, background) => { if (color?.startsWith('var(') || background?.startsWith('var(')) { return color; } return new FastColor(color).onBackground(background).toHexString(); };