You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import type { ColorGenInput } from '@rc-component/color-picker';
|
|
|
|
import type { Color } from './color';
|
|
|
|
import { ColorFactory } from './color';
|
|
|
|
|
|
|
|
export const customizePrefixCls = 'ant-color-picker';
|
|
|
|
|
|
|
|
export const generateColor = (color: ColorGenInput<Color>): Color => {
|
|
|
|
if (color instanceof ColorFactory) {
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
return new ColorFactory(color);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getRoundNumber = (value: number) => Math.round(Number(value || 0));
|
|
|
|
|
|
|
|
export const getAlphaColor = (color: Color) => getRoundNumber(color.toHsb().a * 100);
|