# Shadows presets Every preset here is an ordinary set of render options. Nothing needs to be installed, and the same values work in all seven 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. ## Bare The top is the style's one optional piece and it appears on three of four seeds. Without it a set is seven shoulder lines against five head shapes, which is the plainest thing the style draws. ```json { "topsProbability": 0 } ``` ## Sepia The whole bust is a single fill, so a monochrome set here is two colors and nothing else: the ink and the ground behind it. ```json { "backgroundColor": ["efe3d2"], "inkColor": ["6f4c33","8a6244","573a26","7d5a3f"] } ``` ## Greyscale A filled silhouette is the kind of drawing that loses nothing without color. Useful for a print stylesheet or anywhere color would carry meaning it should not. ```json { "backgroundColor": ["ececee"], "inkColor": ["3a3a3f","55555b","26262a","6a6a71"] } ``` ## Duotone Ink and ground take the same hue at two lightnesses, which is the smallest palette the style can be given. ```json { "backgroundColor": ["e2e5f2"], "inkColor": ["3b4380"] } ``` ## Muted The shipped inks are already restrained. These go one step further toward grey, which suits a comment thread where a dozen busts appear in a column. ```json { "backgroundColor": ["ebe8e2"], "inkColor": ["6b705c","7d6a5f","5f6a72","6f6470","63705f","776f5e"] } ``` ## Electric The same lever the other way, on a near black ground. A filled shape at this saturation stops reading as a person and starts reading as a sign, which is the point. ```json { "backgroundColor": ["0f0f12"], "inkColor": ["ff2e88","00e5ff","7cff00","ffe600","ff6a00","b400ff"] } ``` ## Pastel Wall Changes only what the bust 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 Louder than the shipped set and pushed toward the primaries. The inks are dark enough to hold their edge on top of it. ```json { "backgroundColor": ["ff5d8f","ffb703","43aa8b","4d96ff","b57bff"] } ``` ## Night Shift For dark interfaces. The silhouette and the ground trade places, so the shape is what the light lands on. ```json { "backgroundColor": ["16161a"], "inkColor": ["e6e2dd","d8dfe6","e6dde2","dee6d8"] } ``` ## 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 } ``` ## Full Cast Thirteen tops, all of them merged into the head rather than laid on top of it. At full probability they carry most of what separates one avatar from the next. ```json { "topsProbability": 100 } ``` ## Close Up Uses scale rather than color. Cropping in leaves the head and the top, which is where the style puts its variation anyway. ```json { "scale": 1.2 } ```