@voxket-ai/voxket-live
Version:
A React widget for embedding Voxket-powered audio/video/chat experiences.
32 lines (31 loc) • 817 B
TypeScript
export type ThemeType = 'dark' | 'light' | 'vox';
export interface WidgetTheme {
card: string;
cardTopGradient: string;
cardRadial: string;
cardPurpleBlur: string;
cardPinkBlur: string;
cardPulse1: string;
cardPulse2: string;
main: string;
text: {
primary: string;
secondary: string;
muted: string;
accent: string;
};
micButton: string;
promptSlider: string;
statusIndicator: string;
pulseRings: {
ring1: string;
ring2: string;
ring3: string;
};
controlBar: string;
chatInput: string;
spinner: string;
}
export declare const themes: Record<ThemeType, WidgetTheme>;
export declare function getTheme(themeType: ThemeType): WidgetTheme;
export declare const defaultWidgetStyles: WidgetTheme;