Files
artsite/app/composables/projects.ts

22 lines
468 B
TypeScript

export function useProjectColors() {
const statusColors: Record<string, string> = {
'Active': 'blue',
'Completed': 'green',
'Archived': 'neutral',
'In progress': 'amber'
}
const typeColors: Record<string, string> = {
'Personal Project': 'purple',
'Academic Project': 'sky',
'Infrastructure Project': 'emerald',
'Internship Project': 'orange',
'Research Project': 'blue'
}
return {
statusColors,
typeColors
}
}