fettepalette
Version:
Color ramp generator using curves within the HSV color model
59 lines (58 loc) • 1.32 kB
JavaScript
export const presets = {
miamiSummer: {
total: 9,
centerHue: 0,
hueCycle: 0.3,
curveMethod: "powX",
curveAccent: 0.966,
offsetTint: 0.08,
offsetShade: 0.275,
tintShadeHueShift: 0.023,
offsetCurveModTint: 0,
offsetCurveModShade: 0.4,
minSaturationLight: [0, 0],
maxSaturationLight: [1, 1],
},
sunsetOranges: {
total: 5,
centerHue: 0,
hueCycle: 0.3,
curveMethod: "powX",
curveAccent: 0.883,
offsetTint: 0.156,
offsetShade: 0.369,
tintShadeHueShift: 0.94,
offsetCurveModTint: 0.0599,
offsetCurveModShade: 0.1437,
minSaturationLight: [0, 0],
maxSaturationLight: [1, 1],
},
autumnRainbow: {
total: 9,
centerHue: 0,
hueCycle: 0.3,
curveMethod: "arc",
curveAccent: 0,
offsetTint: 0.178,
offsetShade: 0.082,
tintShadeHueShift: 0.01,
offsetCurveModTint: 0.03,
offsetCurveModShade: 0.03,
minSaturationLight: [0, 0],
maxSaturationLight: [1, 1],
},
moodyRainbow: {
total: 13,
centerHue: 0,
hueCycle: 1.456,
curveMethod: 'pow',
curveAccent: 0.344,
offsetTint: 0.142,
offsetShade: 0.266,
tintShadeHueShift: 0.01,
offsetCurveModTint: 0.03,
offsetCurveModShade: 0.03,
minSaturationLight: [0, 0],
maxSaturationLight: [1, 1],
}
};