mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 22:59:56 +01:00
22 lines
468 B
TypeScript
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
|
|
}
|
|
}
|