2.0 KiB
2.0 KiB
Changelog
1.4.0
- color.hex() now automatically sets the mode to 'rgba' if the colors alpha channel is < 1. so
chroma('rgba(255,0,0,.5)').hex()
will now return"#ff000080"
instead of"#ff0000"
. if this is not what you want, you must explicitly set the mode torgb
using.hex("rgb")
. - bugfix in chroma.average in LRGB mode (#187)
- chroma.scale now also works with just one color (#180)
1.3.5
- added LRGB interpolation
1.3.4
- passing null as mode in scale.colors will return chroma objects
1.3.3
- added color.clipped
- added chroma.distance
- added chroma.deltaE
- color.set now returns a new chroma instance
- chroma.scale now allows disabling of internal cache
- chroma.average now works with any color mode
- added unit tests for color conversions
- use hex colors as default string representation
- RGB channels are now stored as floats internally for higher precision
- bugfix with cubehelix and constant lightness
- bugfix in chroma.limits quantiles
- bugfix when running scale.colors(1)
- bugfix in hsi2rgb color conversion
1.2.2
- scale.colors() now returns the original colors instead of just min/max range
1.2.0
- added chroma.average for averaging colors
1.1.0
- refactored chroma.scale
- changed behaviour of scale.domain
- added scale.classes
- added scale.padding
1.0.2
- standardized alpha channel construction
- chroma.bezier automatically returns chroma.scale
1.0.1
- added simple color output to chroma.scale().colors()
1.0.0
- numeric interpolation does what it should
- refactored and modularized code base
- changed argument order of Color::interpolate