Definition files of the DiceBear avatar styles.
Project description
DiceBear Avatar Styles
This repository contains all official avatar style definitions for
DiceBear. An avatar style definition is a JSON file
that describes how to create an avatar. It contains all necessary information
like available elements and colors. The JSON files are ideal for creating
avatars in different programming languages with the corresponding DiceBear
wrapper. The JSON schema for the avatar style definitions can be found in the
@dicebear/schema package.
Generate definitions
Most of the JSON files were created using the
DiceBear Exporter
for Figma. The used Figma files are linked in the figma folder. Files created
with this plugin are marked accordingly and should not be adjusted manually, but
exported again with the Figma plugin.
Usage
JavaScript
npm install @dicebear/styles
import adventurer from '@dicebear/styles/adventurer.json' with { type: 'json' };
import lorelei from '@dicebear/styles/lorelei.json' with { type: 'json' };
PHP
composer require dicebear/styles
$basePath = \Composer\InstalledVersions::getInstallPath('dicebear/styles');
$adventurer = json_decode(file_get_contents($basePath . '/src/adventurer.json'), true);
$lorelei = json_decode(file_get_contents($basePath . '/src/lorelei.json'), true);
Python
pip install dicebear-styles
import json
from importlib.resources import files
adventurer = json.loads(files('dicebear_styles').joinpath('adventurer.json').read_text('utf-8'))
lorelei = json.loads(files('dicebear_styles').joinpath('lorelei.json').read_text('utf-8'))
Rust
Each style is gated behind a feature of the same name, so a binary only embeds the
styles it opts into (use the all feature to pull in every style):
cargo add dicebear-styles --features adventurer,lorelei
The enabled styles are embedded at compile time and exposed as raw JSON
(&'static str). Parse them with serde_json:
use dicebear_styles::{ADVENTURER, LORELEI};
let adventurer: serde_json::Value = serde_json::from_str(ADVENTURER)?;
let lorelei: serde_json::Value = serde_json::from_str(LORELEI)?;
// Or look one up by name at runtime (None if unknown or its feature is off):
let style = dicebear_styles::get("adventurer");
// all() lists every style compiled into this build.
let all = dicebear_styles::all();
Go
go get github.com/dicebear/styles/v10
Every style is embedded at compile time and exposed as raw JSON (string) — both
as an exported variable and by name via Get. Parse it with encoding/json:
import (
"encoding/json"
styles "github.com/dicebear/styles/v10"
)
var adventurer map[string]any
_ = json.Unmarshal([]byte(styles.Adventurer), &adventurer)
// Or look one up by name (ok is false if the style is unknown):
raw, ok := styles.Get("lorelei")
// All() lists every embedded style.
all := styles.All()
Contributing
See CONTRIBUTING.md for local development, testing, and the release process.
License
The avatar styles are licensed under different licenses. More information can be found in the file LICENSE.md or in the definition files themselves.
Sponsors
Advertisement: Many thanks to our sponsors who provide us with free or discounted products.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dicebear_styles-10.2.0.tar.gz.
File metadata
- Download URL: dicebear_styles-10.2.0.tar.gz
- Upload date:
- Size: 679.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cd640f5bbec5e077238739441c071ec54783051c1495d85324f409d26750dae
|
|
| MD5 |
c172e700b8823195f0156a78670cd87c
|
|
| BLAKE2b-256 |
31a7020d3d0aa9d8263849477f257ea6eabef66bc0f9ade2dbc8a9ccd3e16ae7
|
Provenance
The following attestation bundles were made for dicebear_styles-10.2.0.tar.gz:
Publisher:
publish.yml on dicebear/styles
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dicebear_styles-10.2.0.tar.gz -
Subject digest:
1cd640f5bbec5e077238739441c071ec54783051c1495d85324f409d26750dae - Sigstore transparency entry: 1757303199
- Sigstore integration time:
-
Permalink:
dicebear/styles@d86daba36d9bca45b2fa0dd872c03c6929a51e44 -
Branch / Tag:
refs/tags/v10.2.0 - Owner: https://github.com/dicebear
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d86daba36d9bca45b2fa0dd872c03c6929a51e44 -
Trigger Event:
push
-
Statement type:
File details
Details for the file dicebear_styles-10.2.0-py3-none-any.whl.
File metadata
- Download URL: dicebear_styles-10.2.0-py3-none-any.whl
- Upload date:
- Size: 706.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bfc9477af09185e51dd6a57db76251ca8d5c5fcdc9d9689aaee7e6fd19081ab
|
|
| MD5 |
1681e077e53a4149a78fac6ac909a40f
|
|
| BLAKE2b-256 |
311b0d11c72f5fd3ff6c21d96f831adae622708d2adad649d6fcb552345e540e
|
Provenance
The following attestation bundles were made for dicebear_styles-10.2.0-py3-none-any.whl:
Publisher:
publish.yml on dicebear/styles
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dicebear_styles-10.2.0-py3-none-any.whl -
Subject digest:
4bfc9477af09185e51dd6a57db76251ca8d5c5fcdc9d9689aaee7e6fd19081ab - Sigstore transparency entry: 1757303474
- Sigstore integration time:
-
Permalink:
dicebear/styles@d86daba36d9bca45b2fa0dd872c03c6929a51e44 -
Branch / Tag:
refs/tags/v10.2.0 - Owner: https://github.com/dicebear
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d86daba36d9bca45b2fa0dd872c03c6929a51e44 -
Trigger Event:
push
-
Statement type: