UNPKG

@prescott/geo-pattern

Version:

Create beautiful generative geometric background images from a string.

18 lines (17 loc) 329 B
export interface PatternFill { dark: string; light: string; } export interface PatternStroke { color: string; opacity: number; } export interface PatternOpacity { min: number; max: number; } export interface PatternPreset { fill: PatternFill; stroke: PatternStroke; opacity: PatternOpacity; }