UNPKG

color-theme-generator

Version:

Generates random color themes that are based in color theory.

24 lines (23 loc) 538 B
/** * The limitation on arguments for the methods getColorTheme. */ export declare enum ArgumentLimits { AnalogousMax = 5, AnalogousMin = 3, ComplementaryMax = 4, ComplementaryMin = 2, MonochromeMax = 5, MonochromeMin = 2, SplitComplementaryMax = 5, SplitComplementaryMin = 3, TriadicMax = 5, TriadicMin = 3, RandomColorThemeMax = 5, RandomColorThemeMin = 2, HueMax = 360, HueMin = 0, SaturationMax = 100, SaturationMin = 0, LightnessMax = 100, LightnessMin = 0 }