Closed musjj closed 11 months ago
pico-8 allows up to 32 colors through an undocumented hack that ended up being officially approved by the developer.
It'd be nice if pyxel can also support 32 colors, maybe optionally through the .pyxpal palette file.
.pyxpal
Pyxel2 which should be released this year supports 16+ colors.
Now you can extend the number of colors.
colors = pyxel.colors.to_list() colors *= 2 # Just doubled num of colors pyxel.colors.from_list(colors)
pico-8 allows up to 32 colors through an undocumented hack that ended up being officially approved by the developer.
It'd be nice if pyxel can also support 32 colors, maybe optionally through the
.pyxpal
palette file.