このコミットが含まれているのは:
2025-07-21 05:11:14 +09:00
コミット 3f42eb6915
12個のファイルの変更210行の追加143行の削除
+17 -3
ファイルの表示
@@ -1,11 +1,25 @@
export const CATEGORIES = ['general',
'character',
'deerjikist',
import type { Category } from 'types'
export const LIGHT_COLOUR_SHADE = 800
export const DARK_COLOUR_SHADE = 300
export const CATEGORIES = ['deerjikist',
'meme',
'character',
'general',
'material',
'meta',
'nico'] as const
export const TAG_COLOUR = {
deerjikist: 'rose',
meme: 'purple',
character: 'lime',
general: 'cyan',
material: 'orange',
meta: 'yellow',
nico: 'gray' } as const satisfies Record<Category, string>
export const USER_ROLES = ['admin', 'member', 'guest'] as const
export const ViewFlagBehavior = { OnShowedDetail: 1,