(index: number, videoId?: string)
| 109 | |
| 110 | // Get HSL color for dynamic theming |
| 111 | export function getTopicHSLColor(index: number, videoId?: string): string { |
| 112 | const colors = videoId ? getShuffledTopicColors(videoId) : TOPIC_COLORS; |
| 113 | return colors[index % colors.length]; |
| 114 | } |
| 115 | |
| 116 | // Re-export parseTimestamp from timestamp-utils for backward compatibility |
| 117 | export { parseTimestamp } from './timestamp-utils'; |
no test coverage detected