现代简约的字母头像设计,基于用户ID自动生成唯一的颜色和字母组合。 智能识别姓名格式,支持邮箱、用户名、驼峰命名等多种格式。
适用于评论列表、消息气泡
适用于用户卡片、导航栏
适用于个人资料、头部展示
精心挑选的12种现代色彩,确保良好的对比度和视觉美感。每个用户ID会一致性地映射到特定颜色。
// 基本使用
import LetterAvatar from './components/LetterAvatar';
<LetterAvatar userId="sarah.chen" size="medium" />
// 自定义样式
<LetterAvatar
userId="alex.rodriguez"
size="large"
className="shadow-lg border-2 border-white"
/>
// 工具函数
import { getDisplayLetter, getAvatarColor } from './components/LetterAvatar';
const letter = getDisplayLetter("john.doe"); // "JD"
const color = getAvatarColor("john.doe"); // "#6366F1"