Add single color mode
[kaka/cakelight.git] / src / kaka / cakelight / Color.java
index c3f782f..0332371 100644 (file)
@@ -108,4 +108,9 @@ public class Color {
                 (int)(b * invertedValue + other.b * value)
         );
     }
+
+    @Override
+    public String toString() {
+        return "Color{r=" + r + ", g=" + g + ", b=" + b + "}";
+    }
 }