Theme Yun

valaxy-theme-yun is the default blog theme for Valaxy. It focuses on personal blogs, post archives, friend links, animated home banners, and theme-level customization.

Quick Start

bash
pnpm add valaxy-theme-yun
valaxy.config.ts
ts
import type { ThemeConfig } from 'valaxy-theme-yun'
import { defineValaxyConfig } from 'valaxy'

export default defineValaxyConfig<ThemeConfig>({
  theme: 'yun',
  themeConfig: {
    type: 'nimbo',
  },
})

You can also extract the theme config into a separate theme.config.ts file:

theme.config.ts
ts
import { defineThemeConfig } from 'valaxy-theme-yun'

export default defineThemeConfig({
  type: 'nimbo',
})

Documentation Map

Contributors