# Dylan 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 Facial hair appears on one avatar in five by default. Switching it off leaves the two things that carry the style: the haircut and the mood. ```json { "facialHairProbability": 0 } ``` ## Sepia The skin palette moves with the rest here. A monochrome set with two natural skin tones in it would not read as monochrome at all. ```json { "backgroundColor": ["e7d5b8"], "hairColor": ["3d2a17","5c4223","8a6a3c","b0946a"], "skinColor": ["c39a6b","a87f52"] } ``` ## Greyscale For interfaces where color already means something else, or for a print stylesheet. The heavy black linework the style draws with survives the treatment better than most. ```json { "backgroundColor": ["e4e4e7"], "hairColor": ["18181b","3f3f46","71717a","a1a1aa"], "skinColor": ["c9c9cf","9c9ca4"] } ``` ## Duotone Dark ground, mid hair, pale face. The hair needs its own step here: the style draws it as a flat shape with no outline, so hair the color of the background loses the haircut entirely. ```json { "backgroundColor": ["0d3b3f"], "hairColor": ["2f8a86"], "skinColor": ["cfeceb"] } ``` ## Muted The style ships black, white and three primaries for hair. This trades them for tones that sit quietly next to each other, which suits a dense list where five primaries would fight. ```json { "backgroundColor": ["dcd7cc"], "hairColor": ["4a4238","7b6a58","a3937c","6b7361","8c6f63"] } ``` ## Electric The same lever pulled the other way. The background stays pale so the hair is the only loud thing in the frame. ```json { "backgroundColor": ["f4f4f5"], "hairColor": ["ff2e88","00e5ff","7cff00","ffe600","b400ff"] } ``` ## Pastel Wall The three backgrounds the style ships are fully saturated. These six are not, which lets the black linework do the work. ```json { "backgroundColor": ["b6e3f4","c0aede","d1d4f9","ffd5dc","ffdfbf","d9f2d9"] } ``` ## Bold Pop The style is already flat and graphic, so it takes a loud ground without turning to mush. ```json { "backgroundColor": ["ff2e63","00c2a8","ffb300","3d5afe","8e24aa","00e676"] } ``` ## Night Shift For dark interfaces. The hair palette moves to light tones so the silhouette still separates from the background. ```json { "backgroundColor": ["16161a"], "hairColor": ["f4f4f5","d4d4d8","fcd34d","a5b4fc"] } ``` ## 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, so the light comes from either side across a set. ```json { "backgroundColor": ["ffb37a","ff7a9c"], "backgroundColorFill": "linear", "backgroundColorAngle": 45 } ``` ## Close Up The style leaves a wide margin around the head, which reads as small at avatar sizes. This crops in far enough to matter and still keeps the ears. ```json { "scale": 1.25 } ```