# Rings 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 a single color group for all five rings, so one palette change carries the whole picture. ```json { "backgroundColor": ["e3d2b4"], "ringColor": ["8a6a48","6b4f35","a3855f","54402c"] } ``` ## Greyscale No hue anywhere. Useful for a print stylesheet, a disabled state, or anywhere color would carry meaning it should not. ```json { "backgroundColor": ["ececee"], "ringColor": ["343437","5e5e62","8c8c90","b6b6b9"] } ``` ## Duotone Background and rings 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"], "ringColor": ["3d4272"] } ``` ## Muted The style ships sixteen colors evenly spaced around the wheel, which is a lot of rainbow. This trades them for six dusty tones that sit closer together. ```json { "backgroundColor": ["ece7de"], "ringColor": ["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"], "ringColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"] } ``` ## Pastel Wall Changes only what the rings sit 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 } ```