# Notionists Neutral 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 at its plainest: the face drawn in black on a white ground. The baseline the rest of these presets move away from. ```json { "backgroundColor": ["ffffff"] } ``` ## Sepia Warm all the way through. With no head shape to fill, the background is the paper and the ink is the whole drawing. ```json { "backgroundColor": ["e3d2b4"], "inkColor": ["4a3526"], "paperColor": ["f5ead6"] } ``` ## Greyscale The quietest set here. Nothing competes with the page around it, which suits an admin table or a comment thread where the avatar is a marker rather than a picture. ```json { "backgroundColor": ["ececed"], "inkColor": ["3b3d42"], "paperColor": ["fafafa"] } ``` ## Duotone One teal for the drawing and one pale mint for the ground, and that is the entire palette. ```json { "backgroundColor": ["dff0eb"], "inkColor": ["0f3d38"], "paperColor": ["eefaf6"] } ``` ## Inverted Swaps the two colors. The fill is a color group of its own here, so it goes dark with the ground and the drawing reads as chalk on a board rather than as pale lines dissolving. ```json { "backgroundColor": ["111113"], "inkColor": ["f2f2f4"], "paperColor": ["1c1c20"] } ``` ## Muted Changes only what the drawing sits on, and away from white rather than towards a brighter color. ```json { "backgroundColor": ["6b705c","a5a58d","b98b73","7c9082","8e9aaf","9c6b58"], "inkColor": ["1f1f22"], "paperColor": ["f0efe9"] } ``` ## Electric The other direction: six grounds past anything the style ships, with the line left black so it survives them. ```json { "backgroundColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"], "inkColor": ["101216"], "paperColor": ["ffffff"] } ``` ## Pastel Wall 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. ```json { "backgroundColor": ["ffd9b0","ffa8bf"], "backgroundColorFill": "linear", "backgroundColorAngle": 135 } ``` ## Close Up Uses scale rather than color. These styles leave a lot of air around the drawing, and cropping in buys it back. ```json { "backgroundColor": ["f4f1ea"], "scale": 1.3, "inkColor": ["2f2a24"], "paperColor": ["fffdf9"] } ```