@sap-ux/ui-components
Version:
SAP UI Components Library
14 lines • 389 B
JavaScript
import { createTheme, loadTheme } from '@fluentui/react';
/**
* Method intializes default styles for 'ui-components' theme.
*/
export function initTheme() {
const appTheme = createTheme({
defaultFontStyle: {
WebkitFontSmoothing: '',
fontFamily: 'var(--vscode-font-family)'
}
});
loadTheme(appTheme);
}
//# sourceMappingURL=index.js.map