# Weave 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 three band colors have to differ from each other, so a monochrome weave is really a three-step ladder. The accent line goes with them. ```json { "backgroundColor": ["e3d2b4"], "colorAColor": ["8a6a48"], "colorBColor": ["6b4f35"], "colorCColor": ["a3855f"], "lineColor": ["54402c"] } ``` ## Greyscale The same three-step ladder without color. The weave structure carries the picture on its own. ```json { "backgroundColor": ["ececee"], "colorAColor": ["5e5e62"], "colorBColor": ["8c8c90"], "colorCColor": ["343437"], "lineColor": ["b6b6b9"] } ``` ## Duotone Background and all three bands take the same hue at different lightnesses, which is as close to two colors as the style's own constraints allow. ```json { "backgroundColor": ["dfe3f5"], "colorAColor": ["9aa2d2"], "colorBColor": ["6a71a8"], "colorCColor": ["3d4272"], "lineColor": ["23264a"] } ``` ## Muted The style ships eight saturated band colors. This trades them for dusty tones, which turns the tartan from a beach towel into a wool blanket. ```json { "backgroundColor": ["ece7de"], "colorAColor": ["6b705c","a5a58d","b98b73","7c9082","8e9aaf","9c6b58"], "colorBColor": ["6b705c","a5a58d","b98b73","7c9082","8e9aaf","9c6b58"], "colorCColor": ["6b705c","a5a58d","b98b73","7c9082","8e9aaf","9c6b58"], "lineColor": ["54402c"] } ``` ## Electric The other direction on the same lever: six colors past anything the style ships. ```json { "backgroundColor": ["101216"], "colorAColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"], "colorBColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"], "colorCColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"], "lineColor": ["ffe600"] } ``` ## Pastel Wall Changes only what the weave sits on. The lightest way to make a set 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. ```json { "backgroundColor": ["ffd9b0","ffa8bf"], "backgroundColorFill": "linear", "backgroundColorAngle": 135 } ``` ## Close Up Uses scale rather than color. Fewer, larger bands read better at the size a comment thread gives an avatar. ```json { "scale": 1.5 } ```