@azure/communication-react
Version:
React library for building modern communication user experiences utilizing Azure Communication Services
29 lines • 738 B
TypeScript
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;
//# sourceMappingURL=themes.d.ts.map