Avatune
Themes

@avatune/fatin-verse-theme

Avatar theme for Avatune using Fatin Verse assets.

Source: packages/assets/fatin-verse-assets/README.md

Avatar theme for Avatune using fatin verse design assets.

Installation

npm install @avatune/fatin-verse-theme

Usage

This theme is available for multiple frameworks: React, Vue, Svelte, Angular, and Vanilla JavaScript.

React

import { Avatar } from '@avatune/react'
import theme from '@avatune/fatin-verse-theme/react'

function App() {
  return (
    <Avatar
      theme={theme}
      size={300}
      seed="optional-seed-for-random-generation"
    />
  )
}

Vue

<script setup lang="ts">
import { Avatar } from '@avatune/vue'
import theme from '@avatune/fatin-verse-theme/vue'
</script>

<template>
  <Avatar
    :theme="theme"
    :size="300"
    seed="optional-seed-for-random-generation"
  />
</template>

Svelte

<script lang="ts">
  import { Avatar } from '@avatune/svelte'
  import theme from '@avatune/fatin-verse-theme/svelte'
</script>

<Avatar
  theme={theme}
  size={300}
  seed="optional-seed-for-random-generation"
/>

Angular

import { Component } from '@angular/core'
import { Avatar } from '@avatune/angular'
import theme from '@avatune/fatin-verse-theme/angular'

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [Avatar],
  template: `
    <avatune-avatar
      [theme]="theme"
      [inputSize]="300"
      seed="optional-seed-for-random-generation"
    />
  `,
})
export class AppComponent {
  theme = theme
}

Vanilla JavaScript

import { avatar } from '@avatune/vanilla'
import theme from '@avatune/fatin-verse-theme/vanilla'

const container = document.getElementById('avatar-container')
const svg = avatar({
  theme,
  size: 300,
  seed: 'optional-seed-for-random-generation',
})

container?.appendChild(svg)

Customization

You can override specific avatar parts:

<Avatar
  theme={theme}
  size={300}
  hair="curlyPuff"          // Choose specific hair style
  hairColor="#FF5733"    // Custom hair color
  body="hoodie"     // Choose specific clothing
  bodyColor="#3498DB"    // Custom clothing color
/>

Design Assets

This theme uses Fatin Verse style SVG assets for creating customizable avatars. Assets include various options for hair, eyes, eyebrows, mouth, nose, ears, head shape, and body/clothing.

The assets are available in the @avatune/fatin-verse-assets package.

Using Assets Directly

SVG Paths

import { hair, eyes, mouth } from '@avatune/fatin-verse-assets';

React Components

import { HairShort, EyesBoring, MouthSmile } from '@avatune/fatin-verse-assets/react';

Svelte Components

import { HairShort, EyesBoring, MouthSmile } from '@avatune/fatin-verse-assets/svelte';

Vue Components

import { HairShort, EyesBoring, MouthSmile } from '@avatune/fatin-verse-assets/vue';

Available Assets

Accessories

PreviewFilename
beauty-mark
cap
earpiece-left
earring-right
glasses-round
glasses-square
headset-mic
mask
visor-glasses

Body

PreviewFilename
hoodie
jacket
scarf-top
shirt-tie
striped-overall
suit
turtleneck

Eyebrows

PreviewFilename
angled
flat
raised
soft
thick
thin

Eyes

PreviewFilename
focused
happy
neutral
surprised
wide

FaceHair

PreviewFilename
beard
mustache

Hair

PreviewFilename
curly-puff
curly-top
curved-long
double-buns
long-braid
long-straight
long-wave
low-bun
short-curly
short-flip
short-messy
short-wave
side-ponytail
side-sweep
spiky
tight-curls
volumized
PreviewFilename
diamond
heart
oval
pear
round
square
thin
triangle
wide

Mouth

PreviewFilename
neutral-line
smile-small
smile-soft
smirk-left
smirk-right
tiny-dot

Nose

PreviewFilename
curve
long
pointy
round
small
soft

License & Credits

Theme License

This theme package is licensed under MIT (see LICENSE.md).

Design Assets License

This project uses avatar design assets licensed under CC BY 4.0.

Original designs by FatinVerse. Modifications were made to adapt them for composable SVG avatars.

For full details, see CREDITS.md.

Development

# Build the theme
bun run build

# Build in watch mode
bun run dev

# Type checking
bun run check-types

On this page