# Constellation presets Every preset here is an ordinary set of render options. Nothing needs to be installed, and the same values work in all six libraries and as HTTP-API query parameters. Pick one to read its code, or open it in the playground and change whatever you like. Options a preset does not set keep varying with the seed, so most of these stay as unique per user as the plain style does. Each preset lists how many distinct avatars it still leaves you. ## Deep Space Darker and colder than the style's own skies, which pushes the constellation forward and drops everything else away. ```json { "backgroundColor": ["07080d","0a0b12"], "constellationColor": ["eaf2ff","d8e6f5"] } ``` ## Warm Night The other end of the same idea: a sky closer to city light than to deep space, with stars that read as amber rather than white. ```json { "backgroundColor": ["2a1c2b","2e1f24"], "constellationColor": ["f2d9a8","e9c98c"] } ``` ## Blueprint Trades the night for plan paper. The sky becomes one flat blue and the stars a single pale ink, which reads as a diagram of a constellation rather than a photograph of one. ```json { "backgroundColor": ["12395c"], "constellationColor": ["dbe9f7"] } ``` ## Greyscale Strips the color from a style that is mostly one color anyway. What is left is the geometry: points and the lines between them. ```json { "backgroundColor": ["1c1c1f"], "constellationColor": ["f0f0f2"] } ``` ## Daylight The one preset that abandons the night. Inverting sky and stars turns the constellation into a mark on paper, which suits a light interface where a black square would punch a hole. ```json { "backgroundColor": ["eef2f7","e8eef5"], "constellationColor": ["2a3550"] } ``` ## Electric Colors past anything the style ships, on the darkest sky, so the constellation reads as lit rather than lit up. ```json { "backgroundColor": ["07080d"], "constellationColor": ["00e5ff","ff2e88","7cff00"] } ``` ## Animated The style ships an animation component that is off by default. The `animation` tag switches it on and lets the seed pick a speed. It respects prefers-reduced-motion. ```json { "tags": ["animation"] } ```