轻量自用论坛,Go 单二进制 + React SPA 内嵌 + SQLite。 Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
321 B
TypeScript
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();
|
|
}
|