UNPKG

react-native-windows

Version:
23 lines 594 B
/** * 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