Files
dicebear--dicebear/apps/docs/pages/styles/index.md
T
2026-07-13 12:25:08 +08:00

41 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
layout: page
title: Avatar Styles Browse 35+ Avatar Designs
description: >
Browse 35+ styles and generate avatars with the DiceBear avatar library. From
abstract patterns to character designs: the perfect avatar generator for
profile pictures and user avatars.
aside: false
sidebar: false
---
<script setup lang="ts">
import { computed } from 'vue';
import { useData } from 'vitepress';
import StyleList from "@theme/components/styles/StyleList.vue";
import { UiContainer, UiHeadline, UiDescription } from "@theme/components/ui";
const { theme } = useData();
const styleCount = computed(() => Object.keys(theme.value.avatarStyles).length);
</script>
<UiContainer class="styles-page">
<div class="styles-hero">
<UiHeadline tag="h1" class="styles-title">
<strong>Styles</strong> Overview
</UiHeadline>
<UiDescription>
Browse our avatar library, from abstract patterns to hand-crafted character illustrations. Every style is made by artists and ready to use as profile pictures in your projects.
</UiDescription>
</div>
<StyleList />
</UiContainer>
<style>
.styles-page .styles-hero {
text-align: center;
padding: 80px 0 48px;
}
</style>