80bdba8d3041e92d617eb20e981aca01fb086e85
kent
  Wed Feb 13 11:31:09 2013 -0800
Exposing veryLightRainbowAtPos to rest of code.
diff --git src/inc/rainbow.h src/inc/rainbow.h
index 580786a..faa080d 100644
--- src/inc/rainbow.h
+++ src/inc/rainbow.h
@@ -3,16 +3,20 @@
 #ifndef RAINBOW_H
 #define RAINBOW_H
 
 #ifndef MEMGFX_H
 #include "memgfx.h"
 #endif
 
 struct rgbColor saturatedRainbowAtPos(double pos);
 /* Given pos, a number between 0 and 1, return a saturated rainbow rgbColor
  * where 0 maps to red,  0.1 is orange, and 0.9 is violet and 1.0 is back to red */
 
 struct rgbColor lightRainbowAtPos(double pos);
 /* Given pos, a number between 0 and 1, return a lightish rainbow rgbColor
  * where 0 maps to red,  0.1 is orange, and 0.9 is violet and 1.0 is back to red */
 
+struct rgbColor veryLightRainbowAtPos(double pos);
+/* Given pos, a number between 0 and 1, return a light rainbow rgbColor
+ * where 0 maps to red,  0.1 is orange, and 0.9 is violet and 1.0 is back to red */
+
 #endif /* RAINBOW_H */