What
Add more 4-color palettes to the PALETTES dict in nca/params.py.
Why
More palette variety = more visual diversity between eras. The format is dead simple — just a name and 4 RGB tuples.
How
Open nca/params.py and add entries to the PALETTES dict following the existing format:
"your_palette_name": [(R,G,B), (R,G,B), (R,G,B), (R,G,B)],
Colors go dark → light or follow any gradient you like. The screensaver interpolates between them.
Notes
- No other files need to be touched
- Any color theme welcome — nature, space, industrial, moody, neon, whatever
- Test it by running python main.py and hitting S to cycle through until your palette shows up
What
Add more 4-color palettes to the
PALETTESdict innca/params.py.Why
More palette variety = more visual diversity between eras. The format is dead simple — just a name and 4 RGB tuples.
How
Open
nca/params.pyand add entries to thePALETTESdict following the existing format: