create-custom-theme.js 738 B

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