ngx-angora-css
Version:
Angora CSS is a library that provides a set of CSS classes to help you build modern web applications. It is based on the [Boostrap Expanded Features Library](https://github.com/LynxPardelle/bootstrap-expanded-features) and the [Bootstrap](https://getboots
14 lines (13 loc) • 601 B
TypeScript
export declare const color_transform: {
colorToRGB(color: string): number[];
RGBToRGBA(rgb: number[], alpha: number): string;
parseRGB(rgba: string): number[];
HexToRGB(Hex: string): string;
HSLToRGB(HSL: string): string;
HueToRGB(p: number, q: number, t: number): number;
HWBToRGB(HWB: string): string;
shadeTintColor(rgb: number[], percent: number): number[];
opacityCreator(value: string, opacity: number): string;
getShadeTintColorOrGradient(tintValue: number, value: string): string;
separateColor4Transform(value: string): RegExpMatchArray | null;
};