md-iview 1.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (118) hide show
  1. package/README.md +2 -0
  2. package/package.json +116 -0
  3. package/src/components/libs/util.js +117 -0
  4. package/src/components/md-error-page/403.less +92 -0
  5. package/src/components/md-error-page/403.vue +34 -0
  6. package/src/components/md-error-page/404.less +60 -0
  7. package/src/components/md-error-page/404.vue +34 -0
  8. package/src/components/md-error-page/500.less +73 -0
  9. package/src/components/md-error-page/500.vue +36 -0
  10. package/src/components/md-error-page/demo/index.less +22 -0
  11. package/src/components/md-error-page/demo/index.vue +97 -0
  12. package/src/components/md-form-item/index.js +3 -0
  13. package/src/components/md-icon/icon.vue +77 -0
  14. package/src/components/md-icon/icons.js +5 -0
  15. package/src/components/md-icon/index.js +11 -0
  16. package/src/components/md-icon/style/index.less +1 -0
  17. package/src/components/md-loading/index.js +55 -0
  18. package/src/components/md-loading/index.vue +53 -0
  19. package/src/components/md-loading/md-loading.js +38 -0
  20. package/src/components/md-print/demo/index.vue +260 -0
  21. package/src/components/md-print/index.js +123 -0
  22. package/src/components/md-rich-editor/index.vue +69 -0
  23. package/src/components/md-rich-editor/module/image-extend/index.js +216 -0
  24. package/src/components/md-scroll-bar/demo/index.vue +102 -0
  25. package/src/components/md-scroll-bar/index.js +3 -0
  26. package/src/components/md-scroll-bar/index.less +90 -0
  27. package/src/components/md-scroll-bar/index.vue +250 -0
  28. package/src/components/md-select/index.js +7 -0
  29. package/src/components/md-select/select.vue +841 -0
  30. package/src/components/md-shrinkable-menu/components/sidebarMenu.vue +167 -0
  31. package/src/components/md-shrinkable-menu/components/sidebarMenuShrink.vue +119 -0
  32. package/src/components/md-shrinkable-menu/demo/data/cachePage.js +1 -0
  33. package/src/components/md-shrinkable-menu/demo/data/currentPath.js +9 -0
  34. package/src/components/md-shrinkable-menu/demo/data/menu.js +575 -0
  35. package/src/components/md-shrinkable-menu/demo/data/menu2.js +1017 -0
  36. package/src/components/md-shrinkable-menu/demo/data/pageTagsList.js +153 -0
  37. package/src/components/md-shrinkable-menu/demo/index.less +297 -0
  38. package/src/components/md-shrinkable-menu/demo/index.vue +285 -0
  39. package/src/components/md-shrinkable-menu/index.vue +112 -0
  40. package/src/components/md-shrinkable-menu/sidebar.vue +195 -0
  41. package/src/components/md-shrinkable-menu/styles/menu.less +5 -0
  42. package/src/components/md-shrinkable-menu/styles/sidebar.less +363 -0
  43. package/src/components/md-split-pane/demo/index.vue +101 -0
  44. package/src/components/md-split-pane/index.js +3 -0
  45. package/src/components/md-split-pane/index.less +93 -0
  46. package/src/components/md-split-pane/index.vue +230 -0
  47. package/src/components/md-table/action-tooltip.vue +45 -0
  48. package/src/components/md-table/can-edit-v2.vue +823 -0
  49. package/src/components/md-table/can-edit.vue +723 -0
  50. package/src/components/md-table/custom-cell.vue +71 -0
  51. package/src/components/md-table/date-picker-cell-v2.vue +48 -0
  52. package/src/components/md-table/date-picker-cell.vue +39 -0
  53. package/src/components/md-table/demo/data/search.js +67 -0
  54. package/src/components/md-table/demo/data/table2csv.js +200 -0
  55. package/src/components/md-table/demo/data/table2excel.js +239 -0
  56. package/src/components/md-table/demo/data/table_data.js +251 -0
  57. package/src/components/md-table/demo/editable-table.vue +144 -0
  58. package/src/components/md-table/demo/exportable-table.vue +124 -0
  59. package/src/components/md-table/demo/widgets/header-search.vue +88 -0
  60. package/src/components/md-table/drop-down-cell-v2.vue +87 -0
  61. package/src/components/md-table/drop-down-cell.vue +81 -0
  62. package/src/components/md-table/editable-expand.vue +143 -0
  63. package/src/components/md-table/expand.vue +97 -0
  64. package/src/components/md-table/index.vue +53 -0
  65. package/src/components/md-table/iview-table/cell.vue +99 -0
  66. package/src/components/md-table/iview-table/expand.js +21 -0
  67. package/src/components/md-table/iview-table/export-csv.js +76 -0
  68. package/src/components/md-table/iview-table/header.js +16 -0
  69. package/src/components/md-table/iview-table/index.js +2 -0
  70. package/src/components/md-table/iview-table/mixin.js +31 -0
  71. package/src/components/md-table/iview-table/table-body.vue +101 -0
  72. package/src/components/md-table/iview-table/table-head.vue +311 -0
  73. package/src/components/md-table/iview-table/table-tr.vue +31 -0
  74. package/src/components/md-table/iview-table/table.vue +1026 -0
  75. package/src/components/md-table/iview-table/util.js +93 -0
  76. package/src/components/md-table/libs/table2excel.js +100 -0
  77. package/src/components/md-table/select-cell-v2.vue +64 -0
  78. package/src/components/md-table/select-cell.vue +46 -0
  79. package/src/components/md-table/table.less +76 -0
  80. package/src/components/md-toolbar/index.vue +171 -0
  81. package/src/components/md-tree/index.js +2 -0
  82. package/src/components/md-tree/node.vue +238 -0
  83. package/src/components/md-tree/render.js +17 -0
  84. package/src/components/md-tree/tree.vue +241 -0
  85. package/src/components/utilities/can.js +35 -0
  86. package/src/directives/index.js +34 -0
  87. package/src/directives/resize.js +27 -0
  88. package/src/directives/scroll.js +27 -0
  89. package/src/directives/style/bg-color.js +23 -0
  90. package/src/directives/style/color.js +23 -0
  91. package/src/directives/style/font-size.js +23 -0
  92. package/src/directives/style/height.js +23 -0
  93. package/src/directives/style/lineHeight.js +23 -0
  94. package/src/directives/style/margin.js +48 -0
  95. package/src/directives/style/opacity.js +23 -0
  96. package/src/directives/style/padding.js +48 -0
  97. package/src/directives/style/width.js +24 -0
  98. package/src/index.js +442 -0
  99. package/src/locale/lang.js +5 -0
  100. package/src/mixins/colorable.js +51 -0
  101. package/src/style/color/bezierEasing.less +110 -0
  102. package/src/style/color/colorPalette.less +75 -0
  103. package/src/style/color/colors.less +146 -0
  104. package/src/style/color/tinyColor.less +1184 -0
  105. package/src/style/common.less +72 -0
  106. package/src/style/components/_ripple.less +60 -0
  107. package/src/style/components/_shrinkable-menu.less +46 -0
  108. package/src/style/components/_toolbar.less +96 -0
  109. package/src/style/components/index.less +3 -0
  110. package/src/style/components/rich-editor.less +6 -0
  111. package/src/style/index.less +10 -0
  112. package/src/style/theme.less +155 -0
  113. package/src/utils/color.js +46 -0
  114. package/src/utils/console.js +105 -0
  115. package/src/utils/load.js +79 -0
  116. package/src/utils/mask.js +139 -0
  117. package/src/utils/mixins.js +5 -0
  118. package/src/utils/validate.js +271 -0
@@ -0,0 +1,110 @@
1
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
2
+ .bezierEasingMixin() {
3
+ @functions: ~`(function() {
4
+ var NEWTON_ITERATIONS = 4;
5
+ var NEWTON_MIN_SLOPE = 0.001;
6
+ var SUBDIVISION_PRECISION = 0.0000001;
7
+ var SUBDIVISION_MAX_ITERATIONS = 10;
8
+
9
+ var kSplineTableSize = 11;
10
+ var kSampleStepSize = 1.0 / (kSplineTableSize - 1.0);
11
+
12
+ var float32ArraySupported = typeof Float32Array === 'function';
13
+
14
+ function A (aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; }
15
+ function B (aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; }
16
+ function C (aA1) { return 3.0 * aA1; }
17
+
18
+ // Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.
19
+ function calcBezier (aT, aA1, aA2) { return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT; }
20
+
21
+ // Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2.
22
+ function getSlope (aT, aA1, aA2) { return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1); }
23
+
24
+ function binarySubdivide (aX, aA, aB, mX1, mX2) {
25
+ var currentX, currentT, i = 0;
26
+ do {
27
+ currentT = aA + (aB - aA) / 2.0;
28
+ currentX = calcBezier(currentT, mX1, mX2) - aX;
29
+ if (currentX > 0.0) {
30
+ aB = currentT;
31
+ } else {
32
+ aA = currentT;
33
+ }
34
+ } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS);
35
+ return currentT;
36
+ }
37
+
38
+ function newtonRaphsonIterate (aX, aGuessT, mX1, mX2) {
39
+ for (var i = 0; i < NEWTON_ITERATIONS; ++i) {
40
+ var currentSlope = getSlope(aGuessT, mX1, mX2);
41
+ if (currentSlope === 0.0) {
42
+ return aGuessT;
43
+ }
44
+ var currentX = calcBezier(aGuessT, mX1, mX2) - aX;
45
+ aGuessT -= currentX / currentSlope;
46
+ }
47
+ return aGuessT;
48
+ }
49
+
50
+ var BezierEasing = function (mX1, mY1, mX2, mY2) {
51
+ if (!(0 <= mX1 && mX1 <= 1 && 0 <= mX2 && mX2 <= 1)) {
52
+ throw new Error('bezier x values must be in [0, 1] range');
53
+ }
54
+
55
+ // Precompute samples table
56
+ var sampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize);
57
+ if (mX1 !== mY1 || mX2 !== mY2) {
58
+ for (var i = 0; i < kSplineTableSize; ++i) {
59
+ sampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2);
60
+ }
61
+ }
62
+
63
+ function getTForX (aX) {
64
+ var intervalStart = 0.0;
65
+ var currentSample = 1;
66
+ var lastSample = kSplineTableSize - 1;
67
+
68
+ for (; currentSample !== lastSample && sampleValues[currentSample] <= aX; ++currentSample) {
69
+ intervalStart += kSampleStepSize;
70
+ }
71
+ --currentSample;
72
+
73
+ // Interpolate to provide an initial guess for t
74
+ var dist = (aX - sampleValues[currentSample]) / (sampleValues[currentSample + 1] - sampleValues[currentSample]);
75
+ var guessForT = intervalStart + dist * kSampleStepSize;
76
+
77
+ var initialSlope = getSlope(guessForT, mX1, mX2);
78
+ if (initialSlope >= NEWTON_MIN_SLOPE) {
79
+ return newtonRaphsonIterate(aX, guessForT, mX1, mX2);
80
+ } else if (initialSlope === 0.0) {
81
+ return guessForT;
82
+ } else {
83
+ return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2);
84
+ }
85
+ }
86
+
87
+ return function BezierEasing (x) {
88
+ if (mX1 === mY1 && mX2 === mY2) {
89
+ return x; // linear
90
+ }
91
+ // Because JavaScript number are imprecise, we should guarantee the extremes are right.
92
+ if (x === 0) {
93
+ return 0;
94
+ }
95
+ if (x === 1) {
96
+ return 1;
97
+ }
98
+ return calcBezier(getTForX(x), mY1, mY2);
99
+ };
100
+ };
101
+
102
+ this.colorEasing = BezierEasing(0.26, 0.09, 0.37, 0.18);
103
+ // less 3 requires a return
104
+ return '';
105
+ })()`;
106
+ }
107
+ // It is hacky way to make this function will be compiled preferentially by less
108
+ // resolve error: `ReferenceError: colorPalette is not defined`
109
+ // https://github.com/ant-design/ant-motion/issues/44
110
+ .bezierEasingMixin();
@@ -0,0 +1,75 @@
1
+ /* stylelint-disable no-duplicate-selectors */
2
+ @import "bezierEasing";
3
+ @import "tinyColor";
4
+
5
+ // We create a very complex algorithm which take the place of original tint/shade color system
6
+ // to make sure no one can understand it 👻
7
+ // and create an entire color palette magicly by inputing just a single primary color.
8
+ // We are using bezier-curve easing function and some color manipulations like tint/shade/darken/spin
9
+ .colorPaletteMixin() {
10
+ @functions: ~`(function() {
11
+ var hueStep = 2;
12
+ var saturationStep = 16;
13
+ var saturationStep2 = 5;
14
+ var brightnessStep1 = 5;
15
+ var brightnessStep2 = 15;
16
+ var lightColorCount = 5;
17
+ var darkColorCount = 4;
18
+
19
+ var getHue = function(hsv, i, isLight) {
20
+ var hue;
21
+ if (hsv.h >= 60 && hsv.h <= 240) {
22
+ hue = isLight ? hsv.h - hueStep * i : hsv.h + hueStep * i;
23
+ } else {
24
+ hue = isLight ? hsv.h + hueStep * i : hsv.h - hueStep * i;
25
+ }
26
+ if (hue < 0) {
27
+ hue += 360;
28
+ } else if (hue >= 360) {
29
+ hue -= 360;
30
+ }
31
+ return Math.round(hue);
32
+ };
33
+ var getSaturation = function(hsv, i, isLight) {
34
+ var saturation;
35
+ if (isLight) {
36
+ saturation = Math.round(hsv.s * 100) - saturationStep * i;
37
+ } else if (i == darkColorCount) {
38
+ saturation = Math.round(hsv.s * 100) + saturationStep;
39
+ } else {
40
+ saturation = Math.round(hsv.s * 100) + saturationStep2 * i;
41
+ }
42
+ if (saturation > 100) {
43
+ saturation = 100;
44
+ }
45
+ if (isLight && i === lightColorCount && saturation > 10) {
46
+ saturation = 10;
47
+ }
48
+ if (saturation < 6) {
49
+ saturation = 6;
50
+ }
51
+ return Math.round(saturation);
52
+ };
53
+ var getValue = function(hsv, i, isLight) {
54
+ if (isLight) {
55
+ return Math.round(hsv.v * 100) + brightnessStep1 * i;
56
+ }
57
+ return Math.round(hsv.v * 100) - brightnessStep2 * i;
58
+ };
59
+
60
+ this.colorPalette = function(color, index) {
61
+ var isLight = index <= 6;
62
+ var hsv = tinycolor(color).toHsv();
63
+ var i = isLight ? lightColorCount + 1 - index : index - lightColorCount - 1;
64
+ return tinycolor({
65
+ h: getHue(hsv, i, isLight),
66
+ s: getSaturation(hsv, i, isLight),
67
+ v: getValue(hsv, i, isLight),
68
+ }).toHexString();
69
+ };
70
+ })()`;
71
+ }
72
+ // It is hacky way to make this function will be compiled preferentially by less
73
+ // resolve error: `ReferenceError: colorPalette is not defined`
74
+ // https://github.com/ant-design/ant-motion/issues/44
75
+ .colorPaletteMixin();
@@ -0,0 +1,146 @@
1
+ @import 'colorPalette';
2
+
3
+ // color palettes
4
+ @blue-1: color(~`colorPalette("@{blue-6}", 1)`);
5
+ @blue-2: color(~`colorPalette("@{blue-6}", 2)`);
6
+ @blue-3: color(~`colorPalette("@{blue-6}", 3)`);
7
+ @blue-4: color(~`colorPalette("@{blue-6}", 4)`);
8
+ @blue-5: color(~`colorPalette("@{blue-6}", 5)`);
9
+ @blue-6: #1890ff;
10
+ @blue-7: color(~`colorPalette("@{blue-6}", 7)`);
11
+ @blue-8: color(~`colorPalette("@{blue-6}", 8)`);
12
+ @blue-9: color(~`colorPalette("@{blue-6}", 9)`);
13
+ @blue-10: color(~`colorPalette("@{blue-6}", 10)`);
14
+
15
+ @purple-1: color(~`colorPalette("@{purple-6}", 1)`);
16
+ @purple-2: color(~`colorPalette("@{purple-6}", 2)`);
17
+ @purple-3: color(~`colorPalette("@{purple-6}", 3)`);
18
+ @purple-4: color(~`colorPalette("@{purple-6}", 4)`);
19
+ @purple-5: color(~`colorPalette("@{purple-6}", 5)`);
20
+ @purple-6: #722ed1;
21
+ @purple-7: color(~`colorPalette("@{purple-6}", 7)`);
22
+ @purple-8: color(~`colorPalette("@{purple-6}", 8)`);
23
+ @purple-9: color(~`colorPalette("@{purple-6}", 9)`);
24
+ @purple-10: color(~`colorPalette("@{purple-6}", 10)`);
25
+
26
+ @cyan-1: color(~`colorPalette("@{cyan-6}", 1)`);
27
+ @cyan-2: color(~`colorPalette("@{cyan-6}", 2)`);
28
+ @cyan-3: color(~`colorPalette("@{cyan-6}", 3)`);
29
+ @cyan-4: color(~`colorPalette("@{cyan-6}", 4)`);
30
+ @cyan-5: color(~`colorPalette("@{cyan-6}", 5)`);
31
+ @cyan-6: #13c2c2;
32
+ @cyan-7: color(~`colorPalette("@{cyan-6}", 7)`);
33
+ @cyan-8: color(~`colorPalette("@{cyan-6}", 8)`);
34
+ @cyan-9: color(~`colorPalette("@{cyan-6}", 9)`);
35
+ @cyan-10: color(~`colorPalette("@{cyan-6}", 10)`);
36
+
37
+ @green-1: color(~`colorPalette("@{green-6}", 1)`);
38
+ @green-2: color(~`colorPalette("@{green-6}", 2)`);
39
+ @green-3: color(~`colorPalette("@{green-6}", 3)`);
40
+ @green-4: color(~`colorPalette("@{green-6}", 4)`);
41
+ @green-5: color(~`colorPalette("@{green-6}", 5)`);
42
+ @green-6: #52c41a;
43
+ @green-7: color(~`colorPalette("@{green-6}", 7)`);
44
+ @green-8: color(~`colorPalette("@{green-6}", 8)`);
45
+ @green-9: color(~`colorPalette("@{green-6}", 9)`);
46
+ @green-10: color(~`colorPalette("@{green-6}", 10)`);
47
+
48
+ @magenta-1: color(~`colorPalette("@{magenta-6}", 1)`);
49
+ @magenta-2: color(~`colorPalette("@{magenta-6}", 2)`);
50
+ @magenta-3: color(~`colorPalette("@{magenta-6}", 3)`);
51
+ @magenta-4: color(~`colorPalette("@{magenta-6}", 4)`);
52
+ @magenta-5: color(~`colorPalette("@{magenta-6}", 5)`);
53
+ @magenta-6: #eb2f96;
54
+ @magenta-7: color(~`colorPalette("@{magenta-6}", 7)`);
55
+ @magenta-8: color(~`colorPalette("@{magenta-6}", 8)`);
56
+ @magenta-9: color(~`colorPalette("@{magenta-6}", 9)`);
57
+ @magenta-10: color(~`colorPalette("@{magenta-6}", 10)`);
58
+
59
+ // alias of magenta
60
+ @pink-1: color(~`colorPalette("@{pink-6}", 1)`);
61
+ @pink-2: color(~`colorPalette("@{pink-6}", 2)`);
62
+ @pink-3: color(~`colorPalette("@{pink-6}", 3)`);
63
+ @pink-4: color(~`colorPalette("@{pink-6}", 4)`);
64
+ @pink-5: color(~`colorPalette("@{pink-6}", 5)`);
65
+ @pink-6: #eb2f96;
66
+ @pink-7: color(~`colorPalette("@{pink-6}", 7)`);
67
+ @pink-8: color(~`colorPalette("@{pink-6}", 8)`);
68
+ @pink-9: color(~`colorPalette("@{pink-6}", 9)`);
69
+ @pink-10: color(~`colorPalette("@{pink-6}", 10)`);
70
+
71
+ @red-1: color(~`colorPalette("@{red-6}", 1)`);
72
+ @red-2: color(~`colorPalette("@{red-6}", 2)`);
73
+ @red-3: color(~`colorPalette("@{red-6}", 3)`);
74
+ @red-4: color(~`colorPalette("@{red-6}", 4)`);
75
+ @red-5: color(~`colorPalette("@{red-6}", 5)`);
76
+ @red-6: #f5222d;
77
+ @red-7: color(~`colorPalette("@{red-6}", 7)`);
78
+ @red-8: color(~`colorPalette("@{red-6}", 8)`);
79
+ @red-9: color(~`colorPalette("@{red-6}", 9)`);
80
+ @red-10: color(~`colorPalette("@{red-6}", 10)`);
81
+
82
+ @orange-1: color(~`colorPalette("@{orange-6}", 1)`);
83
+ @orange-2: color(~`colorPalette("@{orange-6}", 2)`);
84
+ @orange-3: color(~`colorPalette("@{orange-6}", 3)`);
85
+ @orange-4: color(~`colorPalette("@{orange-6}", 4)`);
86
+ @orange-5: color(~`colorPalette("@{orange-6}", 5)`);
87
+ @orange-6: #fa8c16;
88
+ @orange-7: color(~`colorPalette("@{orange-6}", 7)`);
89
+ @orange-8: color(~`colorPalette("@{orange-6}", 8)`);
90
+ @orange-9: color(~`colorPalette("@{orange-6}", 9)`);
91
+ @orange-10: color(~`colorPalette("@{orange-6}", 10)`);
92
+
93
+ @yellow-1: color(~`colorPalette("@{yellow-6}", 1)`);
94
+ @yellow-2: color(~`colorPalette("@{yellow-6}", 2)`);
95
+ @yellow-3: color(~`colorPalette("@{yellow-6}", 3)`);
96
+ @yellow-4: color(~`colorPalette("@{yellow-6}", 4)`);
97
+ @yellow-5: color(~`colorPalette("@{yellow-6}", 5)`);
98
+ @yellow-6: #fadb14;
99
+ @yellow-7: color(~`colorPalette("@{yellow-6}", 7)`);
100
+ @yellow-8: color(~`colorPalette("@{yellow-6}", 8)`);
101
+ @yellow-9: color(~`colorPalette("@{yellow-6}", 9)`);
102
+ @yellow-10: color(~`colorPalette("@{yellow-6}", 10)`);
103
+
104
+ @volcano-1: color(~`colorPalette("@{volcano-6}", 1)`);
105
+ @volcano-2: color(~`colorPalette("@{volcano-6}", 2)`);
106
+ @volcano-3: color(~`colorPalette("@{volcano-6}", 3)`);
107
+ @volcano-4: color(~`colorPalette("@{volcano-6}", 4)`);
108
+ @volcano-5: color(~`colorPalette("@{volcano-6}", 5)`);
109
+ @volcano-6: #fa541c;
110
+ @volcano-7: color(~`colorPalette("@{volcano-6}", 7)`);
111
+ @volcano-8: color(~`colorPalette("@{volcano-6}", 8)`);
112
+ @volcano-9: color(~`colorPalette("@{volcano-6}", 9)`);
113
+ @volcano-10: color(~`colorPalette("@{volcano-6}", 10)`);
114
+
115
+ @geekblue-1: color(~`colorPalette("@{geekblue-6}", 1)`);
116
+ @geekblue-2: color(~`colorPalette("@{geekblue-6}", 2)`);
117
+ @geekblue-3: color(~`colorPalette("@{geekblue-6}", 3)`);
118
+ @geekblue-4: color(~`colorPalette("@{geekblue-6}", 4)`);
119
+ @geekblue-5: color(~`colorPalette("@{geekblue-6}", 5)`);
120
+ @geekblue-6: #2f54eb;
121
+ @geekblue-7: color(~`colorPalette("@{geekblue-6}", 7)`);
122
+ @geekblue-8: color(~`colorPalette("@{geekblue-6}", 8)`);
123
+ @geekblue-9: color(~`colorPalette("@{geekblue-6}", 9)`);
124
+ @geekblue-10: color(~`colorPalette("@{geekblue-6}", 10)`);
125
+
126
+ @lime-1: color(~`colorPalette("@{lime-6}", 1)`);
127
+ @lime-2: color(~`colorPalette("@{lime-6}", 2)`);
128
+ @lime-3: color(~`colorPalette("@{lime-6}", 3)`);
129
+ @lime-4: color(~`colorPalette("@{lime-6}", 4)`);
130
+ @lime-5: color(~`colorPalette("@{lime-6}", 5)`);
131
+ @lime-6: #a0d911;
132
+ @lime-7: color(~`colorPalette("@{lime-6}", 7)`);
133
+ @lime-8: color(~`colorPalette("@{lime-6}", 8)`);
134
+ @lime-9: color(~`colorPalette("@{lime-6}", 9)`);
135
+ @lime-10: color(~`colorPalette("@{lime-6}", 10)`);
136
+
137
+ @gold-1: color(~`colorPalette("@{gold-6}", 1)`);
138
+ @gold-2: color(~`colorPalette("@{gold-6}", 2)`);
139
+ @gold-3: color(~`colorPalette("@{gold-6}", 3)`);
140
+ @gold-4: color(~`colorPalette("@{gold-6}", 4)`);
141
+ @gold-5: color(~`colorPalette("@{gold-6}", 5)`);
142
+ @gold-6: #faad14;
143
+ @gold-7: color(~`colorPalette("@{gold-6}", 7)`);
144
+ @gold-8: color(~`colorPalette("@{gold-6}", 8)`);
145
+ @gold-9: color(~`colorPalette("@{gold-6}", 9)`);
146
+ @gold-10: color(~`colorPalette("@{gold-6}", 10)`);