# Glyphs 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. ## Ink The plainest the style gets. Worth knowing while you read the rest of these: Glyphs paints its own background as a pale version of the glyph color, so the `backgroundColor` option never reaches the canvas and every preset here moves one color, not two. ```json { "glyphColor": ["1f1f22"] } ``` ## Sepia One color carries both the mark and the ground it sits on, which is what makes this style so cheap to retint. ```json { "glyphColor": ["6b4f35"] } ``` ## Greyscale Useful for a print stylesheet, a disabled state, or anywhere color would carry meaning it should not. ```json { "glyphColor": ["343437","5e5e62","8c8c90","4a4d52"] } ``` ## Duotone A single glyph color means every avatar in a set shares both mark and ground, and only the shape changes. ```json { "glyphColor": ["0f3d38"] } ``` ## Muted The style ships seven saturated colors. This trades them for dusty tones, which suits a dense list where seven bright marks would compete. ```json { "glyphColor": ["6b705c","a5a58d","b98b73","7c9082","8e9aaf","9c6b58"] } ``` ## Electric The other direction on the same lever: colors past anything the style ships. The pale ground goes with them, so the whole tile gets louder rather than just the mark. ```json { "glyphColor": ["ff2e88","00e5ff","ffe600","7cff00","ff6a00","b400ff"] } ``` ## Cool Half the color wheel. Useful next to Warm when two groups of avatars need to be told apart at a glance. ```json { "glyphColor": ["2f6fb5","2f8f8a","4a5fb8","6b4bd6","2f9ec4"] } ``` ## Warm The other half of the same wheel, and the counterpart to Cool. ```json { "glyphColor": ["c4443f","c67a2c","b8542f","c43f7a","a8842c"] } ```