/** * Represents the theme for the video player. */ export interface Theme { /** * The colors used in the theme. */ colors: { textMain: string; textSecondary: string; iconNormal: string; iconActive: string; sliderTrackActive: string; sliderTrackInactive: string; sliderTrackCache: string; sliderThumb: string; menuBackground: string; menuBorder: string; menuText: string; menuSeparator: string; badgeBackground: string; ripple: string; spinner: string; error: string; success: string; }; /** * The icon sizes used in the theme. */ iconSizes: { sm: number; md: number; lg: number; }; /** * The font sizes used in the theme. */ fontSizes: { sm: number; md: number; lg: number; }; /** * The animation durations used in the theme. */ animations: { fast: number; normal: number; slow: number; }; } //# sourceMappingURL=theme.d.ts.map