# Identicon 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. ## Sepia The style has one color group for the whole grid, so a single palette change carries the picture. ```json { "backgroundColor": ["e3d2b4"], "rowColor": ["8a6a48","6b4f35","a3855f","54402c"] } ``` ## Greyscale No hue anywhere, which suits an identicon: the pattern carries the identity, not the color. ```json { "backgroundColor": ["ececee"], "rowColor": ["343437","5e5e62","8c8c90"] } ``` ## Duotone Background and grid take the same hue at two lightnesses. The most restrained this style gets, and the easiest to place next to an existing brand color. ```json { "backgroundColor": ["dfe3f5"], "rowColor": ["3d4272"] } ``` ## Muted The style ships nineteen colors around the wheel. This trades them for six dusty tones, which stops a table of identicons looking like a test chart. ```json { "backgroundColor": ["ece7de"], "rowColor": ["6b705c","a5a58d","b98b73","7c9082","8e9aaf","9c6b58"] } ``` ## Electric The other direction on the same lever: six colors past anything the style ships, on a dark background so they read as lit. ```json { "backgroundColor": ["101216"], "rowColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"] } ``` ## Pastel Wall Changes only what the grid sits on. The lightest way to make a set of avatars feel like it belongs together. ```json { "backgroundColor": ["ffe3ea","e3edff","e2f5e9","fdf1d4","efe6ff"] } ``` ## Bold Pop The loud counterpart to Pastel Wall, strong enough that the avatar holds its own against a busy page. ```json { "backgroundColor": ["ff5d8f","ffb703","43aa8b","4d96ff","b57bff"] } ``` ## Sunrise Shows the gradient background options: two colors, a linear fill and a fixed angle. The seed still decides which of the two ends up on top. ```json { "backgroundColor": ["ffd9b0","ffa8bf"], "backgroundColorFill": "linear", "backgroundColorAngle": 135 } ```