The gamma correction calculation formula in [colorview.ino](https://github.com/adafruit/Adafruit_TCS34725/blob/master/examples/colorview/colorview.ino) seems not right. `for (int i=0; i<256; i++) { float x = i; x /= 255; x = pow(x, 2.5); x *= 255; ` I think it should be x = pow(x, 2.5); --> x = pow(x, 1/2.5);