mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 18:59:59 +01:00
22 lines
465 B
TypeScript
22 lines
465 B
TypeScript
export function useProjectColors() {
|
|
const statusColors: Record<string, string> = {
|
|
'active': 'green',
|
|
'completed': 'blue',
|
|
'archived': 'gray',
|
|
'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
|
|
}
|
|
}
|