Files
jiang13-forum/frontend/src/utils/board.ts
freefire e1c1708715 初始提交:姜十三论坛 Jiang13 Forum
轻量自用论坛,Go 单二进制 + React SPA 内嵌 + SQLite。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-15 21:08:52 +08:00

11 lines
321 B
TypeScript

/** 板块图标背景色 */
const BOARD_COLORS = ['#2d8a55', '#3498db', '#9b59b6', '#e67e22', '#1abc9c', '#e74c3c', '#34495e'];
export function boardColor(id: number) {
return BOARD_COLORS[id % BOARD_COLORS.length];
}
export function boardInitial(name: string) {
return (name?.trim()?.[0] || '?').toUpperCase();
}