@fluentui/react-northstar
Version:
A themable React component library.
15 lines (14 loc) • 572 B
JavaScript
import { dividerColorAreas } from '../../../teams/components/Divider/dividerVariables';
import { extendColorScheme, pickValuesFromColorScheme } from '../../../colorUtils';
export var dividerVariables = function dividerVariables(siteVars) {
return {
colorScheme: pickValuesFromColorScheme(extendColorScheme(siteVars.colorScheme, {
brand: {
foreground: siteVars.colors.brand[400],
border: siteVars.colors.brand[400]
}
}), dividerColorAreas),
textColor: siteVars.colors.grey[250]
};
};
//# sourceMappingURL=dividerVariables.js.map