ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
688 B

  1. import type { Category } from 'types'
  2. export const LIGHT_COLOUR_SHADE = 800
  3. export const DARK_COLOUR_SHADE = 300
  4. export const CATEGORIES = ['deerjikist',
  5. 'meme',
  6. 'character',
  7. 'general',
  8. 'material',
  9. 'meta',
  10. 'nico'] as const
  11. export const TAG_COLOUR = {
  12. deerjikist: 'rose',
  13. meme: 'purple',
  14. character: 'lime',
  15. general: 'cyan',
  16. material: 'orange',
  17. meta: 'yellow',
  18. nico: 'gray' } as const satisfies Record<Category, string>
  19. export const USER_ROLES = ['admin', 'member', 'guest'] as const
  20. export const ViewFlagBehavior = { OnShowedDetail: 1,
  21. OnClickedLink: 2,
  22. NotAuto: 3 } as const