# Big Smile 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. ## Bare The style stripped back: no background, so the face sits on whatever your page is, and the accessory component switched off. ```json { "backgroundColor": [], "accessoriesProbability": 0 } ``` ## Terracotta Not quite a sepia. Big Smile paints its eyes a fixed brown and the inside of most mouths a fixed red, neither reachable by any option. Leaning the whole palette warm and red takes both in rather than leaving them as the two loud spots on an otherwise brown face. Accessories switch off, since most of them carry their own colors. ```json { "backgroundColor": ["e7cdbd"], "skinColor": ["dcae95","c08e77","9c6b58","7d5344"], "hairColor": ["6b3529","8a4433","4a231c","a35b42"], "accessoriesProbability": 0 } ``` ## Muted The style ships four naturals and four brights for hair. This replaces all eight with dusty tones that sit closer together, so a page of these reads as one set. ```json { "backgroundColor": ["ece7de"], "hairColor": ["6b705c","a5a58d","b98b73","7c9082","8e9aaf","9c6b58"] } ``` ## Electric The other direction on the same lever: six hair colors past anything the style ships, on a dark background so they read as lit. Skin still comes from the seed. ```json { "backgroundColor": ["101216"], "hairColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"] } ``` ## Pastel Wall Changes nothing about the people, only what they stand in front of. 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, and the only preset here that will fight with a colorful interface rather than sit inside it. ```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 } ``` ## Night Shift For dark interfaces. The hair pool drops to the pale end so the silhouette does not disappear into the background. ```json { "backgroundColor": ["16161c"], "hairColor": ["e2ba87","e9b729","d56c0c","238d80"] } ``` ## Full Cast The accessory component sits at fifty percent, so half the avatars come out plain. This puts one on all of them, which suits a demo better than a user list. ```json { "backgroundColor": ["f4f1ea"], "accessoriesProbability": 100 } ``` ## Close Up Uses scale rather than color. At the size a comment thread gives an avatar, the default framing spends a lot of it on empty space, and cropping in buys the detail back. ```json { "backgroundColor": ["f4f1ea"], "scale": 1.2 } ```