Bottts Neutral
Bottts Neutral is a minimalist robot-inspired vector avatar style with clean geometric shapes. Generate simple, distinct customizable profile icons ideal for API services and tech platforms.
This avatar style is a remix of: Bottts by Pablo Stanley, licensed under Free for personal and commercial use .
LICENSE
While our code is MIT licensed, the design of this avatar style is licensed under Free for personal and commercial use. See details for more information.
Usage
Use this URL to request this avatar style via our HTTP API.
https://api.dicebear.com/9.x/bottts-neutral/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 { botttsNeutral } from '@dicebear/collection';
const avatar = createAvatar(botttsNeutral, {
// ... 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 botttsNeutral
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/bottts-neutral/svg?seed=Felix
createAvatar(botttsNeutral, {
seed: "Felix"
});dicebear botttsNeutral --seed "Felix"
flip
Typebooleanfalsetruefalsehttps://api.dicebear.com/9.x/bottts-neutral/svg?flip=false
createAvatar(botttsNeutral, {
flip: false
});dicebear botttsNeutral --flip false
rotate
TypeintegerMinimum 0Maximum 3600901802700https://api.dicebear.com/9.x/bottts-neutral/svg?rotate=0
createAvatar(botttsNeutral, {
rotate: 0
});dicebear botttsNeutral --rotate 0
scale
TypeintegerMinimum 0Maximum 20050100200100https://api.dicebear.com/9.x/bottts-neutral/svg?scale=50
createAvatar(botttsNeutral, {
scale: 50
});dicebear botttsNeutral --scale 50
radius
TypeintegerMinimum 0Maximum 50010203040500https://api.dicebear.com/9.x/bottts-neutral/svg?radius=0
createAvatar(botttsNeutral, {
radius: 0
});dicebear botttsNeutral --radius 0
size
TypeintegerMinimum 13248648096https://api.dicebear.com/9.x/bottts-neutral/svg?size=32
createAvatar(botttsNeutral, {
size: 32
});dicebear botttsNeutral --size 32
backgroundColor
TypearrayItem Pattern ^(transparent|[a-fA-F0-9]{6})$b6e3f4c0aeded1d4f9ffd5dcffdfbf00acc11e88e55e35b16d4c417cb3428e24aa039be543a047546e7a00897b3949ab757575c0ca33d81b60e53935f4511efb8c00fdd835ffb300https://api.dicebear.com/9.x/bottts-neutral/svg?backgroundColor=b6e3f4,c0aede,d1d4f9
createAvatar(botttsNeutral, {
backgroundColor: ["b6e3f4","c0aede","d1d4f9"]
});dicebear botttsNeutral --backgroundColor "b6e3f4" "c0aede" "d1d4f9"
backgroundType
TypearraygradientLinearsolidsolidhttps://api.dicebear.com/9.x/bottts-neutral/svg?backgroundType=gradientLinear,solid
createAvatar(botttsNeutral, {
backgroundType: ["gradientLinear","solid"]
});dicebear botttsNeutral --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/bottts-neutral/svg?backgroundRotation=0,360
createAvatar(botttsNeutral, {
backgroundRotation: [0,360]
});dicebear botttsNeutral --backgroundRotation 0 360
translateX
TypeintegerMinimum -100Maximum 100-50-25025500https://api.dicebear.com/9.x/bottts-neutral/svg?translateX=-50
createAvatar(botttsNeutral, {
translateX: -50
});dicebear botttsNeutral --translateX -50
translateY
TypeintegerMinimum -100Maximum 100-50-25025500https://api.dicebear.com/9.x/bottts-neutral/svg?translateY=-50
createAvatar(botttsNeutral, {
translateY: -50
});dicebear botttsNeutral --translateY -50
clip
Typebooleantruehttps://api.dicebear.com/9.x/bottts-neutral/svg?clip=true
createAvatar(botttsNeutral, {
clip: true
});dicebear botttsNeutral --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/bottts-neutral/svg?randomizeIds=false
createAvatar(botttsNeutral, {
randomizeIds: false
});dicebear botttsNeutral --randomizeIds false
eyes
Typearraybulgingdizzyevaframe1frame2glowhappyheartsrobocoproundroundFrame01roundFrame02sensorshade01bulgingdizzyevaframe1frame2glowhappyheartsrobocoproundroundFrame01roundFrame02sensorshade01https://api.dicebear.com/9.x/bottts-neutral/svg?eyes=bulging,dizzy,eva
createAvatar(botttsNeutral, {
eyes: ["bulging","dizzy","eva"]
});dicebear botttsNeutral --eyes "bulging" "dizzy" "eva"
mouth
Typearraybitediagramgrill01grill02grill03smile01smile02square01square02bitediagramgrill01grill02grill03smile01smile02square01square02https://api.dicebear.com/9.x/bottts-neutral/svg?mouth=bite,diagram,grill01
createAvatar(botttsNeutral, {
mouth: ["bite","diagram","grill01"]
});dicebear botttsNeutral --mouth "bite" "diagram" "grill01"
Details
| Naming | |
|---|---|
| Collection Import | import { botttsNeutral } from '@dicebear/collection'; |
| Package Import | import * as style from '@dicebear/bottts-neutral'; |
| CLI | dicebear botttsNeutral |
| HTTP-API | https://api.dicebear.com/9.x/bottts-neutral/svg |
| JSON Schema | https://api.dicebear.com/9.x/bottts-neutral/schema.json |
| Source | |
|---|---|
| Title | Bottts |
| Creator | Pablo Stanley |
| Website | https://twitter.com/pablostanley |
| License | Free for personal and commercial use |
| Source | https://bottts.com/ |