@tsports/go-colorful
Version:
A TypeScript port of the go-colorful package for working with colors
14 lines • 668 B
TypeScript
/**
* Various ways to generate single random colors
*/
import { type Color } from './color';
import { type RandInterface } from './rand';
export declare const FastWarmColorWithRand: (rand: RandInterface) => Color;
export declare const FastWarmColor: () => Color;
export declare const WarmColorWithRand: (rand: RandInterface) => Color;
export declare const WarmColor: () => Color;
export declare const FastHappyColorWithRand: (rand: RandInterface) => Color;
export declare const FastHappyColor: () => Color;
export declare const HappyColorWithRand: (rand: RandInterface) => Color;
export declare const HappyColor: () => Color;
//# sourceMappingURL=generators.d.ts.map