playpal: make red more intense (again)

Two commits ago, I softened the effect the red palettes had to avoid
the last one being pure-red.  While I still think it should be a
little visible on the last one, it was maybe a bit too visible.  This
might be a balance between the two.
This commit is contained in:
Mike Swanson 2019-09-19 15:21:27 -07:00
parent 383854430b
commit 55dc88bf5a

View file

@ -192,7 +192,7 @@ palettes.append(base_pal)
# STARTREDPALS
for i in range(8):
p = (i + 1) * 0.8 / 8
p = (i + 1) * 0.9 / 8
palettes.append(bias_palette_towards(base_pal, (255, 0, 0), p))