hansen-tool
Version:
web的一些工具集函数,包括(树形菜单转换、本地存储、文件下载、文件大小单位转换、金额格式化、浏览器判断)等
22 lines • 656 B
TypeScript
/**
* @description rgba的颜色值转为Hex颜色值
* @type
* @default
* @example colorRgbaToHex('rgb(255,255,255)') => #ffffff
*/
export declare const colorRgbaToHex: (rgba: string) => string;
/**
* @description rgba的颜色值转为Hex颜色值
* @type
* @default
* @example colorHexToRgb('#ffffff') => rgb(255,255,255)
*/
export declare const colorHexToRgb: (hex: string) => string;
/**
* @description rgba的颜色值转为Hex颜色值
* @type
* @default
* @example colorHexToRgb('#ffffff', 1) => rgb(255,255,255, 1)
*/
export declare const colorHexToRgba: (hex: string, alpha?: number) => string;
//# sourceMappingURL=colorToTran.d.ts.map