From 197ecf54a737b74b1ea02648d16137df7b0fe223 Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Sun, 6 Jan 2019 14:13:53 -0700 Subject: [PATCH] 128 iterations... 256 was all blue --- render.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render.go b/render.go index e2557ec..85f705b 100644 --- a/render.go +++ b/render.go @@ -46,7 +46,7 @@ func main() { go computeThread() } - colorStep := float64(Iterations) * 256 + colorStep := float64(Iterations) * 128 colors = interpolateColors("Plan9", colorStep) log.Fatal(http.ListenAndServe(":6161", nil))