Converts color temperature in Kelvin to a color in RGB color space. The conversion is designed to be fast and usable for image processing.
Dart implementation of Tanner Helland's algorithm.
import 'ColorTemperatureToRGBValues.dart'
...
void main() {
KelvinColorConverter myConverter = KelvinColorConverter(temperature: 2300);
myConverter.toRGB(); // returns [255, 150, 50]
...
}