summaryrefslogtreecommitdiff
path: root/julia
diff options
context:
space:
mode:
authorLogan Hunt <loganhunt@simponic.xyz>2022-04-26 17:47:28 -0600
committerLogan Hunt <loganhunt@simponic.xyz>2022-04-26 17:47:28 -0600
commita2e493f1426aa72865c6d85aaf0febe80214ff10 (patch)
treefb0e4bdcb792e28579e622df2e383e6445af9c78 /julia
parent079cf656826fd5ae9ba0e4d2583fa3986e65fdf1 (diff)
downloadsimponic.xyz-a2e493f1426aa72865c6d85aaf0febe80214ff10.tar.gz
simponic.xyz-a2e493f1426aa72865c6d85aaf0febe80214ff10.zip
Fix too dark colors
Diffstat (limited to 'julia')
-rw-r--r--julia/julia.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/julia/julia.js b/julia/julia.js
index 37c1362..5ac56f1 100644
--- a/julia/julia.js
+++ b/julia/julia.js
@@ -29,7 +29,7 @@ const buildRender = (width, height) => gpu.createKernel(function (maxIterations,
const canvasHolder = document.getElementById('canvasHolder');
let render; // The GPU kernel built from buildRender
let state = {
- colorMultipliers: [0.01 * Math.random(), 0.03 * Math.random(), 0.02 * Math.random()],
+ colorMultipliers: [0.01 * Math.random() + 0.005, 0.03 * Math.random() + 0.005, 0.02 * Math.random() + 0.005],
changes: {
centerX: 0,
centerY: 0,