diff --git a/src/shader.c b/src/shader.c index 501f180..32d4354 100644 --- a/src/shader.c +++ b/src/shader.c @@ -1,5 +1,9 @@ #include "shader.h" Color shader(int index, double time) { + if (index == 0) { + return hex_to_color(0xFFFFFF); + } + return hsv_to_color(time * 120 + index * 6, 1, 1); } \ No newline at end of file