9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
|
export const sportColors: Record<string, string> = {
|
||
|
'Cycling (Sport)': '#55A8A3',
|
||
|
'Cycling (Transport)': '#98C3A9',
|
||
|
Hiking: '#D0838A',
|
||
|
'Mountain Biking': '#ECC77E',
|
||
|
Running: '#926692',
|
||
|
Walking: '#929292',
|
||
|
}
|