UNPKG

communication-react-19

Version:

React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)

35 lines 867 B
import { PartialTheme } from '@fluentui/react'; /** * Custom Fluent theme palette used by calling related components in this library. * * @public */ export interface CallingTheme { callingPalette: { callRed: string; callRedDark: string; callRedDarker: string; iconWhite: string; raiseHandGold: string; videoTileLabelBackgroundLight: string; }; } /** * Preset light theme for components exported from this library. * * @public */ export declare const lightTheme: PartialTheme & CallingTheme; /** * Preset dark theme for components exported from this library. * * @public */ export declare const darkTheme: PartialTheme & CallingTheme; /** * Preset dark theme for the ImageOverlay component. * * @public */ export declare const imageOverlayTheme: PartialTheme; //# sourceMappingURL=themes.d.ts.map