# Triangles 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 shape color follows the background automatically, picking whichever of black and white contrasts more, so changing the palette is enough to carry the whole picture. ```json { "backgroundColor": ["8a6a48","6b4f35","a3855f","54402c"] } ``` ## Greyscale Useful for a print stylesheet, a disabled state, or anywhere color would carry meaning it should not. The shape still flips between black and white for contrast. ```json { "backgroundColor": ["343437","5e5e62","8c8c90","b6b6b9"] } ``` ## Duotone A single background hue means every avatar in a set shares it, and only the triangles changes. The most restrained this style gets. ```json { "backgroundColor": ["3d4272"] } ``` ## Muted The style ships a saturated background palette. This trades it for dusty tones, for interfaces where the avatar should be present without being the loudest thing on screen. ```json { "backgroundColor": ["6b705c","a5a58d","b98b73","7c9082","8e9aaf","9c6b58"] } ``` ## Electric The other direction on the same lever: six colors past anything the style ships. The shape flips to whichever of black and white survives them. ```json { "backgroundColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"] } ``` ## Pastel Wall The lightest way to make a set of avatars feel like it belongs together. The shape goes black against all five. ```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 } ``` ## Stencil Every avatar gets the same near-black ground, so nothing distinguishes them but the drawing itself. That turns a set from a group of portraits into an icon sheet, which is what you want in a toolbar or a legend. ```json { "backgroundColor": ["16161c"] } ``` ## Close Up Uses scale rather than color. Cropping in turns the composition from a complete picture into a detail of a larger one, which reads better at small sizes. ```json { "scale": 1.4 } ```