# Planets 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. ## Warm System The style ships fourteen planet colors evenly spaced around the wheel. This keeps the warm half, so a set of these reads as one system rather than a sample chart. ```json { "planetColor": ["e27a8c","e37f64","d88a40","c1982a","d67cb2"] } ``` ## Cool System The other half of the same wheel. Useful next to Warm System when two groups of avatars need to be told apart at a glance. ```json { "planetColor": ["74b160","39b789","00b6af","00b1cf","47a7e7","7a9bef"] } ``` ## Greyscale Strips the color from a style that is mostly color. What is left is the composition: a disc, a moon and a field of stars. ```json { "backgroundColor": ["16181d"], "planetColor": ["8c8c90","6e6e72","aeaeb2"], "moonColor": ["d8d8dc"] } ``` ## Duotone Three steps of the same hue. The most restrained this style gets, and the easiest to place next to an existing brand color. ```json { "backgroundColor": ["141833"], "planetColor": ["4a55a8"], "moonColor": ["9aa2d2"] } ``` ## Muted The style's planets are fully saturated. These are not, which turns them from marbles into something more like photographs. ```json { "planetColor": ["9c6b58","7c9082","8e9aaf","a5a58d","b98b73"] } ``` ## Electric The other direction: colors past anything the style ships, on the darkest of its own skies so they read as lit from within. ```json { "backgroundColor": ["0a0b0f"], "planetColor": ["ff2e88","00e5ff","ffe600","7cff00","b400ff"] } ``` ## Daylight The one preset that abandons the night. A light sky turns the planet into a flat disc and the stars vanish into it, which is a different picture rather than a lit version of the same one. ```json { "backgroundColor": ["e6ecf5","eef1f7"], "moonColor": ["8c93a3"] } ``` ## Close Up Uses scale rather than color. At avatar size the stars turn to noise, and cropping in trades them for a planet you can actually see. ```json { "scale": 1.5 } ```