# Big Ears 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 details component appears on one avatar in ten. Off, every avatar in a set is built from the same seven parts, which reads more evenly down a list. ```json { "detailsProbability": 0 } ``` ## Sepia The style prints a pink lip on twenty-four of its thirty-eight mouths, plus a few colored eyes, and no option reaches any of them. This keeps the fourteen mouths and twenty-eight eyes that are drawn in line alone. ```json { "backgroundColor": ["ede2ce"], "skinColor": ["d9bd94","c4a377","a8865a","8a6a43","e3cdb0"], "hairColor": ["3a2916","4a3018","5c4223","7d6038","a08256"], "eyesVariant": ["variant01","variant02","variant03","variant04","variant05","variant08","variant09","variant11","variant12","variant14","variant15","variant16","variant17","variant18","variant19","variant20","variant21","variant22","variant23","variant24","variant25","variant26","variant27","variant28","variant29","variant30","variant31","variant32"], "mouthVariant": ["variant0104","variant0204","variant0304","variant0404","variant0504","variant0604","variant0701","variant0702","variant0703","variant0704","variant0705","variant0706","variant0707","variant0708"], "detailsProbability": 0 } ``` ## Greyscale Useful for a print stylesheet, a disabled state, or anywhere color would carry meaning it should not. The ears and the linework carry the drawing once the color is gone. Same exclusions as Sepia. ```json { "backgroundColor": ["ececee"], "skinColor": ["e4e4e7","c1c1c7","a1a1aa","76767e","d4d4d8"], "hairColor": ["18181b","3f3f46","52525b","71717a","a1a1aa"], "eyesVariant": ["variant01","variant02","variant03","variant04","variant05","variant08","variant09","variant11","variant12","variant14","variant15","variant16","variant17","variant18","variant19","variant20","variant21","variant22","variant23","variant24","variant25","variant26","variant27","variant28","variant29","variant30","variant31","variant32"], "mouthVariant": ["variant0104","variant0204","variant0304","variant0404","variant0504","variant0604","variant0701","variant0702","variant0703","variant0704","variant0705","variant0706","variant0707","variant0708"], "detailsProbability": 0 } ``` ## Duotone Two steps of one hue for a whole set, so only the haircut, the ears and the expression separate two avatars. ```json { "backgroundColor": ["e6ecef"], "skinColor": ["9ec9e8"], "hairColor": ["1d3d52"], "eyesVariant": ["variant01","variant02","variant03","variant04","variant05","variant08","variant09","variant11","variant12","variant14","variant15","variant16","variant17","variant18","variant19","variant20","variant21","variant22","variant23","variant24","variant25","variant26","variant27","variant28","variant29","variant30","variant31","variant32"], "mouthVariant": ["variant0104","variant0204","variant0304","variant0404","variant0504","variant0604","variant0701","variant0702","variant0703","variant0704","variant0705","variant0706","variant0707","variant0708"], "detailsProbability": 0 } ``` ## Muted The style ships pink, red and bleached white among its hair colors. These are tones that hold still, for a page where many avatars appear together. ```json { "hairColor": ["4a4238","6b5a48","8a7a64","a3937c","5f6357","7b6a58"] } ``` ## Electric The same group the other way. The style draws hair as a large flat mass, which makes it the right place to put the one loud color. ```json { "hairColor": ["ff2e88","00e5ff","7cff00","ffe600","ff6a00","b400ff"] } ``` ## Pastel Wall The style ships no background at all, so an avatar sits on whatever is behind it. Six pale colors give it a tile of its own. ```json { "backgroundColor": ["b6e3f4","c0aede","d1d4f9","ffd5dc","ffdfbf","d9f2d9"] } ``` ## Bold Pop The heads are pale and the hair is dark, so the drawing keeps its edge on a saturated ground. ```json { "backgroundColor": ["ff2e63","00c2a8","ffb300","3d5afe","8e24aa","00e676"] } ``` ## Night Shift For dark interfaces. The skin palette is light enough on its own that nothing else has to move. ```json { "backgroundColor": ["16161a"] } ``` ## Sunrise Shows the gradient background options: two colors, a linear fill and a fixed angle. Both stops stay light so the dark hair keeps its contrast. ```json { "backgroundColor": ["ffd5a8","ff9db4"], "backgroundColorFill": "linear", "backgroundColorAngle": 45 } ``` ## Full Cast The details component turned all the way up. The style ships six of them that nine seeds in ten never reach. ```json { "detailsProbability": 100 } ``` ## Close Up The style leaves a wide margin, which costs size at 24 or 32 pixels. This stops short of the tallest hairstyles, so nothing spiky gets cut. ```json { "scale": 1.15 } ```