1234567891011121314151617181920 |
- "use strict";
- /**
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.createCustomTheme = createCustomTheme;
- function createCustomTheme() {
- return `
- // Custom Theming for NG-ZORRO
- // For more information: https://ng.ant.design/docs/customize-theme/en
- @import "../node_modules/ng-zorro-antd/ng-zorro-antd.less";
- // Override less variables to here
- // View all variables: https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/components/style/themes/default.less
- // @primary-color: #1890ff;
- `;
- }
- //# sourceMappingURL=create-custom-theme.js.map
|