diff options
Diffstat (limited to 'web/frontend/types.d.ts')
| -rw-r--r-- | web/frontend/types.d.ts | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/web/frontend/types.d.ts b/web/frontend/types.d.ts index a5e83b8..c53b7e5 100644 --- a/web/frontend/types.d.ts +++ b/web/frontend/types.d.ts @@ -84,8 +84,7 @@ export interface OfficialProfileColors { accent: string; } -export interface RideDetailColors { - accent: string; +export interface RideProfileColors { subtle: string; plotSurface: string; grid: string; @@ -98,10 +97,15 @@ export interface RideDetailColors { crossing: string; crossingLabel: string; hoverLine: string; - climbRoute: string; climbFocusFill: string; } +export interface RideMapColors { + accent: string; + forest: string; + climbRoute: string; +} + export interface SyncProgress { total: number; completed: number; |