react-native-windows
Version:
React Native for Windows
23 lines • 594 B
TypeScript
/**
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
* @format
*/
/**
* Color information for high contrast
*/
export interface IHighContrastColors {
ButtonFaceColor: string;
ButtonTextColor: string;
GrayTextColor: string;
HighlightColor: string;
HighlightTextColor: string;
HotlightColor: string;
WindowColor: string;
WindowTextColor: string;
}
export interface IHighContrastChangedEvent {
isHighContrast: boolean;
highContrastColors: IHighContrastColors;
}
//# sourceMappingURL=AppThemeTypes.d.ts.map