gradient-seed-generator
Version:
Seed-based gradient and blob shape generator
23 lines (22 loc) • 506 B
JavaScript
export const themes = {
light: {
colorStops: 4,
hueVariance: 20,
colors: { saturation: 70, lightness: 75 },
},
dark: {
colorStops: 4,
hueVariance: 15,
colors: { saturation: 60, lightness: 30 },
},
vibrant: {
colorStops: 5,
hueVariance: 30,
colors: { saturation: 100, lightness: 55 },
},
pastel: {
colorStops: 15,
hueVariance: 25,
colors: { saturation: 60, lightness: 85 },
}
};