communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
121 lines • 3.04 kB
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// These color records are required for createV9Theme
// For more info, check https://react.fluentui.dev/iframe.html?viewMode=docs&id=concepts-migration-from-v8-components-theme-migration--page#compatible-themes
/**
* @private
*/
export const grey = {
'0': '#000000',
'2': '#050505',
'4': '#0a0a0a',
'6': '#0f0f0f',
'8': '#141414',
'10': '#1a1a1a',
'12': '#1f1f1f',
'14': '#242424',
'16': '#292929',
'18': '#2e2e2e',
'20': '#333333',
'22': '#383838',
'24': '#3d3d3d',
'26': '#424242',
'28': '#474747',
'30': '#4d4d4d',
'32': '#525252',
'34': '#575757',
'36': '#5c5c5c',
'38': '#616161',
'40': '#666666',
'42': '#6b6b6b',
'44': '#707070',
'46': '#757575',
'48': '#7a7a7a',
'50': '#808080',
'52': '#858585',
'54': '#8a8a8a',
'56': '#8f8f8f',
'58': '#949494',
'60': '#999999',
'62': '#9e9e9e',
'64': '#a3a3a3',
'66': '#a8a8a8',
'68': '#adadad',
'70': '#b3b3b3',
'72': '#b8b8b8',
'74': '#bdbdbd',
'76': '#c2c2c2',
'78': '#c7c7c7',
'80': '#cccccc',
'82': '#d1d1d1',
'84': '#d6d6d6',
'86': '#dbdbdb',
'88': '#e0e0e0',
'90': '#e6e6e6',
'92': '#ebebeb',
'94': '#f0f0f0',
'96': '#f5f5f5',
'98': '#fafafa',
'100': '#ffffff'
};
/**
* @private
*/
export const whiteAlpha = {
'5': 'rgba(255, 255, 255, 0.05)',
'10': 'rgba(255, 255, 255, 0.1)',
'20': 'rgba(255, 255, 255, 0.2)',
'30': 'rgba(255, 255, 255, 0.3)',
'40': 'rgba(255, 255, 255, 0.4)',
'50': 'rgba(255, 255, 255, 0.5)',
'60': 'rgba(255, 255, 255, 0.6)',
'70': 'rgba(255, 255, 255, 0.7)',
'80': 'rgba(255, 255, 255, 0.8)',
'90': 'rgba(255, 255, 255, 0.9)'
};
/**
* @private
*/
export const blackAlpha = {
'5': 'rgba(0, 0, 0, 0.05)',
'10': 'rgba(0, 0, 0, 0.1)',
'20': 'rgba(0, 0, 0, 0.2)',
'30': 'rgba(0, 0, 0, 0.3)',
'40': 'rgba(0, 0, 0, 0.4)',
'50': 'rgba(0, 0, 0, 0.5)',
'60': 'rgba(0, 0, 0, 0.6)',
'70': 'rgba(0, 0, 0, 0.7)',
'80': 'rgba(0, 0, 0, 0.8)',
'90': 'rgba(0, 0, 0, 0.9)'
};
/**
* @private
*/
export const grey10Alpha = {
'5': 'rgba(26, 26, 26, 0.05)',
'10': 'rgba(26, 26, 26, 0.1)',
'20': 'rgba(26, 26, 26, 0.2)',
'30': 'rgba(26, 26, 26, 0.3)',
'40': 'rgba(26, 26, 26, 0.4)',
'50': 'rgba(26, 26, 26, 0.5)',
'60': 'rgba(26, 26, 26, 0.6)',
'70': 'rgba(26, 26, 26, 0.7)',
'80': 'rgba(26, 26, 26, 0.8)',
'90': 'rgba(26, 26, 26, 0.9)'
};
/**
* @private
*/
export const grey12Alpha = {
'5': 'rgba(31, 31, 31, 0.05)',
'10': 'rgba(31, 31, 31, 0.1)',
'20': 'rgba(31, 31, 31, 0.2)',
'30': 'rgba(31, 31, 31, 0.3)',
'40': 'rgba(31, 31, 31, 0.4)',
'50': 'rgba(31, 31, 31, 0.5)',
'60': 'rgba(31, 31, 31, 0.6)',
'70': 'rgba(31, 31, 31, 0.7)',
'80': 'rgba(31, 31, 31, 0.8)',
'90': 'rgba(31, 31, 31, 0.9)'
};
//# sourceMappingURL=themeDuplicates.js.map