diff options
| author | Martin Kagamino Lehoux <martin@lehoux.net> | 2026-08-17 10:34:06 +0200 |
|---|---|---|
| committer | Martin Kagamino Lehoux <martin@lehoux.net> | 2026-08-17 10:34:06 +0200 |
| commit | 7c39bc7124f89aa28aaeaffb60b71af9e6335295 (patch) | |
| tree | 56f2948a4e0af8fa107e618caeba3a4dd50a269f /web/frontend/types.d.ts | |
| parent | 2a20ea69a3d62c32c09e62e756a872a3042372b2 (diff) | |
refactor(web): split ride detail rendering concerns
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; |