# Line Face 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 style is one ink color on one ground, so a sepia treatment is the whole picture at once. ```json { "backgroundColor": ["e3d2b4"], "inkColor": ["4a3526"] } ``` ## Greyscale The quietest set here. Nothing competes with the page around it. ```json { "backgroundColor": ["ececed"], "inkColor": ["3b3d42"] } ``` ## Duotone Line Face draws with exactly one ink on one ground, which makes it the one style where a duotone is not an approximation. ```json { "backgroundColor": ["dff0eb"], "inkColor": ["0f3d38"] } ``` ## Inverted Swaps ink and ground. There is no filled shape to dissolve here, only the stroke, so the inversion is clean. ```json { "backgroundColor": ["111113"], "inkColor": ["f2f2f4"] } ``` ## Muted The style ships six warm grounds. This trades them for dusty tones that sit further from cream. ```json { "backgroundColor": ["6b705c","a5a58d","b98b73","7c9082","8e9aaf","9c6b58"], "inkColor": ["1f1f22"] } ``` ## Electric The other direction: six grounds past anything the style ships, with the brush left black so it survives them. ```json { "backgroundColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"], "inkColor": ["101216"] } ``` ## Pastel Wall The lightest way to make a set of avatars feel like it belongs together. ```json { "backgroundColor": ["ffe3ea","e3edff","e2f5e9","fdf1d4","efe6ff"] } ``` ## 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. The style leaves a lot of air around the strokes, and cropping in buys it back. ```json { "backgroundColor": ["f4f1ea"], "scale": 1.3 } ```