Micah
This avatar style is a remix of: Avatar Illustration System by Micah Lanier, licensed under CC BY 4.0 .
LICENSE
While our code is MIT licensed, the design of this avatar style is licensed under CC BY 4.0. See details for more information.
Usage
Use this URL to request this avatar style via our HTTP API.
https://api.dicebear.com/9.x/micah/svg
You can use the URL directly as image source.
See HTTP-API docs for more information.
First install the required packages via npm:
npm install @dicebear/core @dicebear/collection --save
Then you can create this avatar as follows:
import { createAvatar } from '@dicebear/core';
import { micah } from '@dicebear/collection';
const avatar = createAvatar(micah, {
// ... options
});
const svg = avatar.toString();
See JS-Library docs for more information.
First install the CLI package via npm:
npm install --global dicebear
Then you can create this avatar as follows:
dicebear micah
See CLI docs for more information.
Options
seed
TypestringThe seed determines the initial value for the built-in PRNG. With the PRNG you can create the same avatar over and over again based.
FelixAnekahttps://api.dicebear.com/9.x/micah/svg?seed=Felix
createAvatar(micah, {
seed: "Felix"
});dicebear micah --seed "Felix"
flip
Typebooleanfalsetruefalsehttps://api.dicebear.com/9.x/micah/svg?flip=false
createAvatar(micah, {
flip: false
});dicebear micah --flip false
rotate
TypeintegerMinimum 0Maximum 3600901802700https://api.dicebear.com/9.x/micah/svg?rotate=0
createAvatar(micah, {
rotate: 0
});dicebear micah --rotate 0
scale
TypeintegerMinimum 0Maximum 20050100200100https://api.dicebear.com/9.x/micah/svg?scale=50
createAvatar(micah, {
scale: 50
});dicebear micah --scale 50
radius
TypeintegerMinimum 0Maximum 50010203040500https://api.dicebear.com/9.x/micah/svg?radius=0
createAvatar(micah, {
radius: 0
});dicebear micah --radius 0
size
TypeintegerMinimum 13248648096https://api.dicebear.com/9.x/micah/svg?size=32
createAvatar(micah, {
size: 32
});dicebear micah --size 32
backgroundColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$b6e3f4c0aeded1d4f9ffd5dcffdfbfhttps://api.dicebear.com/9.x/micah/svg?backgroundColor=b6e3f4,c0aede,d1d4f9
createAvatar(micah, {
backgroundColor: ["b6e3f4","c0aede","d1d4f9"]
});dicebear micah --backgroundColor "b6e3f4" "c0aede" "d1d4f9"
backgroundType
TypearraygradientLinearsolidsolidhttps://api.dicebear.com/9.x/micah/svg?backgroundType=gradientLinear,solid
createAvatar(micah, {
backgroundType: ["gradientLinear","solid"]
});dicebear micah --backgroundType "gradientLinear" "solid"
backgroundRotation
Typearray Specify an array of two numbers for this option. The PRNG will generate a number between the two values, which will be used as the rotation degree. The rotation is only visible if backgroundType is set to ['gradientLinear'].
0360https://api.dicebear.com/9.x/micah/svg?backgroundRotation=0,360
createAvatar(micah, {
backgroundRotation: [0,360]
});dicebear micah --backgroundRotation 0 360
translateX
TypeintegerMinimum -100Maximum 100-50-25025500https://api.dicebear.com/9.x/micah/svg?translateX=-50
createAvatar(micah, {
translateX: -50
});dicebear micah --translateX -50
translateY
TypeintegerMinimum -100Maximum 100-50-25025500https://api.dicebear.com/9.x/micah/svg?translateY=-50
createAvatar(micah, {
translateY: -50
});dicebear micah --translateY -50
clip
Typebooleantruehttps://api.dicebear.com/9.x/micah/svg?clip=true
createAvatar(micah, {
clip: true
});dicebear micah --clip true
randomizeIds
TypebooleanThis option randomize the IDs in the generated SVG / XML. This can be useful for example if the avatars are included directly in the HTML and you want to avoid ID collisions.
falsehttps://api.dicebear.com/9.x/micah/svg?randomizeIds=false
createAvatar(micah, {
randomizeIds: false
});dicebear micah --randomizeIds false
base
Typearraystandardstandardhttps://api.dicebear.com/9.x/micah/svg?base=standard
createAvatar(micah, {
base: ["standard"]
});dicebear micah --base "standard"
baseColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$77311dac6651f9c9b6https://api.dicebear.com/9.x/micah/svg?baseColor=77311d,ac6651,f9c9b6
createAvatar(micah, {
baseColor: ["77311d","ac6651","f9c9b6"]
});dicebear micah --baseColor "77311d" "ac6651" "f9c9b6"
earringColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$0000006bd9e99287ff77311dac6651d2eff3e0ddfff4d150f9c9b6fc909fffeba4ffedefffffffhttps://api.dicebear.com/9.x/micah/svg?earringColor=000000,6bd9e9,9287ff
createAvatar(micah, {
earringColor: ["000000","6bd9e9","9287ff"]
});dicebear micah --earringColor "000000" "6bd9e9" "9287ff"
earrings
Typearrayhoopstudhoopstudhttps://api.dicebear.com/9.x/micah/svg?earrings=hoop,stud
createAvatar(micah, {
earrings: ["hoop","stud"]
});dicebear micah --earrings "hoop" "stud"
earringsProbability
TypeintegerMinimum 0Maximum 100010030https://api.dicebear.com/9.x/micah/svg?earringsProbability=0
createAvatar(micah, {
earringsProbability: 0
});dicebear micah --earringsProbability 0
ears
Typearrayattacheddetachedattacheddetachedhttps://api.dicebear.com/9.x/micah/svg?ears=attached,detached
createAvatar(micah, {
ears: ["attached","detached"]
});dicebear micah --ears "attached" "detached"
eyeShadowColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$d2eff3e0ddffffeba4ffedefffffffhttps://api.dicebear.com/9.x/micah/svg?eyeShadowColor=d2eff3,e0ddff,ffeba4
createAvatar(micah, {
eyeShadowColor: ["d2eff3","e0ddff","ffeba4"]
});dicebear micah --eyeShadowColor "d2eff3" "e0ddff" "ffeba4"
eyebrows
TypearraydowneyelashesDowneyelashesUpupdowneyelashesDowneyelashesUpuphttps://api.dicebear.com/9.x/micah/svg?eyebrows=down,eyelashesDown,eyelashesUp
createAvatar(micah, {
eyebrows: ["down","eyelashesDown","eyelashesUp"]
});dicebear micah --eyebrows "down" "eyelashesDown" "eyelashesUp"
eyebrowsColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$000000https://api.dicebear.com/9.x/micah/svg?eyebrowsColor=000000
createAvatar(micah, {
eyebrowsColor: ["000000"]
});dicebear micah --eyebrowsColor "000000"
eyes
TypearrayeyeseyesShadowroundsmilingsmilingShadoweyeseyesShadowroundsmilingsmilingShadowhttps://api.dicebear.com/9.x/micah/svg?eyes=eyes,eyesShadow,round
createAvatar(micah, {
eyes: ["eyes","eyesShadow","round"]
});dicebear micah --eyes "eyes" "eyesShadow" "round"
eyesColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$000000https://api.dicebear.com/9.x/micah/svg?eyesColor=000000
createAvatar(micah, {
eyesColor: ["000000"]
});dicebear micah --eyesColor "000000"
facialHair
Typearraybeardscruffbeardscruffhttps://api.dicebear.com/9.x/micah/svg?facialHair=beard,scruff
createAvatar(micah, {
facialHair: ["beard","scruff"]
});dicebear micah --facialHair "beard" "scruff"
facialHairColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$000000https://api.dicebear.com/9.x/micah/svg?facialHairColor=000000
createAvatar(micah, {
facialHairColor: ["000000"]
});dicebear micah --facialHairColor "000000"
facialHairProbability
TypeintegerMinimum 0Maximum 100010010https://api.dicebear.com/9.x/micah/svg?facialHairProbability=0
createAvatar(micah, {
facialHairProbability: 0
});dicebear micah --facialHairProbability 0
glasses
Typearrayroundsquareroundsquarehttps://api.dicebear.com/9.x/micah/svg?glasses=round,square
createAvatar(micah, {
glasses: ["round","square"]
});dicebear micah --glasses "round" "square"
glassesColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$0000006bd9e99287ff77311dac6651d2eff3e0ddfff4d150f9c9b6fc909fffeba4ffedefffffffhttps://api.dicebear.com/9.x/micah/svg?glassesColor=000000,6bd9e9,9287ff
createAvatar(micah, {
glassesColor: ["000000","6bd9e9","9287ff"]
});dicebear micah --glassesColor "000000" "6bd9e9" "9287ff"
glassesProbability
TypeintegerMinimum 0Maximum 100010030https://api.dicebear.com/9.x/micah/svg?glassesProbability=0
createAvatar(micah, {
glassesProbability: 0
});dicebear micah --glassesProbability 0
hair
TypearraydannyPhantomdougFunnyfonzefullmrCleanmrTpixieturbandannyPhantomdougFunnyfonzefullmrCleanmrTpixieturbanhttps://api.dicebear.com/9.x/micah/svg?hair=dannyPhantom,dougFunny,fonze
createAvatar(micah, {
hair: ["dannyPhantom","dougFunny","fonze"]
});dicebear micah --hair "dannyPhantom" "dougFunny" "fonze"
hairColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$0000006bd9e99287ff77311dac6651d2eff3e0ddfff4d150f9c9b6fc909fffeba4ffedefffffffhttps://api.dicebear.com/9.x/micah/svg?hairColor=000000,6bd9e9,9287ff
createAvatar(micah, {
hairColor: ["000000","6bd9e9","9287ff"]
});dicebear micah --hairColor "000000" "6bd9e9" "9287ff"
hairProbability
TypeintegerMinimum 0Maximum 1000100100https://api.dicebear.com/9.x/micah/svg?hairProbability=0
createAvatar(micah, {
hairProbability: 0
});dicebear micah --hairProbability 0
mouth
Typearrayfrownlaughingnervouspuckersadsmilesmirksurprisedfrownlaughingnervouspuckersadsmilesmirksurprisedhttps://api.dicebear.com/9.x/micah/svg?mouth=frown,laughing,nervous
createAvatar(micah, {
mouth: ["frown","laughing","nervous"]
});dicebear micah --mouth "frown" "laughing" "nervous"
mouthColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$000000https://api.dicebear.com/9.x/micah/svg?mouthColor=000000
createAvatar(micah, {
mouthColor: ["000000"]
});dicebear micah --mouthColor "000000"
nose
Typearraycurvepointedtoundcurvepointedtoundhttps://api.dicebear.com/9.x/micah/svg?nose=curve,pointed,tound
createAvatar(micah, {
nose: ["curve","pointed","tound"]
});dicebear micah --nose "curve" "pointed" "tound"
shirt
Typearraycollaredcrewopencollaredcrewopenhttps://api.dicebear.com/9.x/micah/svg?shirt=collared,crew,open
createAvatar(micah, {
shirt: ["collared","crew","open"]
});dicebear micah --shirt "collared" "crew" "open"
shirtColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$0000006bd9e99287ff77311dac6651d2eff3e0ddfff4d150f9c9b6fc909fffeba4ffedefffffffhttps://api.dicebear.com/9.x/micah/svg?shirtColor=000000,6bd9e9,9287ff
createAvatar(micah, {
shirtColor: ["000000","6bd9e9","9287ff"]
});dicebear micah --shirtColor "000000" "6bd9e9" "9287ff"
Details
| Naming | |
|---|---|
| Collection Import | import { micah } from '@dicebear/collection'; |
| Package Import | import * as style from '@dicebear/micah'; |
| CLI | dicebear micah |
| HTTP-API | https://api.dicebear.com/9.x/micah/svg |
| JSON Schema | https://api.dicebear.com/9.x/micah/schema.json |
| Source | |
|---|---|
| Title | Avatar Illustration System |
| Creator | Micah Lanier |
| Website | https://dribbble.com/micahlanier |
| License | CC BY 4.0 |
| Source | https://www.figma.com/community/file/829741575478342595 |