Avatune
Themes

@avatune/vampire-skin-theme

Avatar theme for Avatune using Vampire Skin assets.

Source: packages/assets/vampire-skin-assets/README.md

Avatar theme for Avatune using vampire skin design assets.

Installation

npm install @avatune/vampire-skin-theme

Usage

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

React

import { Avatar } from '@avatune/react'
import theme from '@avatune/vampire-skin-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/vampire-skin-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/vampire-skin-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/vampire-skin-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/vampire-skin-theme/vanilla'

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

container?.appendChild(svg)

Swift

Add avatune-swift and depend on its AvatuneVampireSkin product:

import AvatuneVampireSkin
import AvatuneRender
import SwiftUI

struct AvatarPreview: View {
    var body: some View {
        AvatarView(
            VampireSkinAvatar(seed: .string("optional-seed-for-random-generation"))
        )
        .frame(width: 300, height: 300)
    }
}

Customization

You can override specific avatar parts:

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

Design Assets

This theme uses Vampire Skin 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/vampire-skin-assets package.

Using Assets Directly

SVG Paths

import { hair, eyes, mouth } from '@avatune/vampire-skin-assets';

React Components

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

Svelte Components

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

Vue Components

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

Available Assets

Accessories

PreviewFilename
bats
heartGlasses
hoopEarring
horns
mask
monocle

Body

PreviewFilename
batCape
bikerJacket
cloak
corset
denimVest
ruffleShirt
tailcoat

Eyebrows

PreviewFilename
curved
stern
straight
thin

Eyes

PreviewFilename
arched
closed
dot
droopy
glare
happy
lidded
wide

Hair

PreviewFilename
bobBangs
longStraight
longWavy
pigtails
shaggy
slickedBack
spiky
wavyBob
widowsPeak

Hats

PreviewFilename
beanie
topHat
PreviewFilename
standard

Mouth

PreviewFilename
fangGrin
flat
hiss
laugh
smile
smirk

Nose

PreviewFilename
nostrils
wide

License & Credits

Theme License

This theme package is licensed under a modified MIT license that permits any use except repackaging its avatar assets into other avatar libraries such as DiceBear (see LICENSE.md).

Design Assets License

The design assets used in this theme are separately licensed. See the asset package for details.

Development

# Build the theme
bun run build

# Build in watch mode
bun run dev

# Type checking
bun run check-types

On this page