@compositive/foundation
Version:
Compositive framework foundation package.
7 lines • 428 B
TypeScript
import { Color } from "./Color";
export declare const rgb: (r: number, g: number, b: number) => Color;
export declare const rgba: (r: number, g: number, b: number, a: number) => Color;
export declare const hsl: (h: number, s: number, l: number) => Color;
export declare const hsla: (h: number, s: number, l: number, a: number) => Color;
export declare const hex: (color: string) => Color;
//# sourceMappingURL=shortcuts.d.ts.map