@lobehub/ui 1.9.0 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/es/ActionIcon/index.js +2 -2
  2. package/es/ActionIcon/style.js +1 -1
  3. package/es/EditableMessageList/index.js +6 -6
  4. package/es/EditableText/index.js +1 -4
  5. package/es/Highlighter/style.js +1 -2
  6. package/es/Icon/index.d.ts +1 -0
  7. package/es/Icon/index.js +5 -2
  8. package/es/Input/index.d.ts +13 -0
  9. package/es/Input/index.js +38 -0
  10. package/es/Input/style.d.ts +6 -0
  11. package/es/Input/style.js +12 -0
  12. package/es/Markdown/style.js +1 -1
  13. package/es/MessageInput/index.d.ts +2 -0
  14. package/es/MessageInput/index.js +10 -8
  15. package/es/SearchBar/index.d.ts +1 -2
  16. package/es/SearchBar/index.js +9 -18
  17. package/es/SearchBar/style.d.ts +1 -3
  18. package/es/SearchBar/style.js +6 -8
  19. package/es/Snippet/style.js +1 -2
  20. package/es/StroyBook/style.js +1 -1
  21. package/es/ThemeProvider/index.d.ts +2 -6
  22. package/es/ThemeProvider/index.js +8 -18
  23. package/es/components/ControlInput.d.ts +1 -1
  24. package/es/components/ControlInput.js +20 -23
  25. package/es/index.d.ts +1 -0
  26. package/es/index.js +1 -0
  27. package/es/styles/algorithms/generateColorPalette.d.ts +11 -0
  28. package/es/styles/algorithms/generateColorPalette.js +31 -0
  29. package/es/styles/{customStylish.d.ts → algorithms/generateCustomStylish.d.ts} +1 -1
  30. package/es/styles/{customStylish.js → algorithms/generateCustomStylish.js} +1 -1
  31. package/es/styles/algorithms/generateCustomToken.d.ts +3 -0
  32. package/es/styles/algorithms/generateCustomToken.js +57 -0
  33. package/es/styles/algorithms/generateTheme.d.ts +5 -0
  34. package/es/styles/algorithms/generateTheme.js +18 -0
  35. package/es/styles/colors.d.ts +38 -0
  36. package/es/styles/colors.js +176 -0
  37. package/es/styles/index.d.ts +3 -3
  38. package/es/styles/index.js +3 -3
  39. package/es/styles/theme/base.d.ts +2 -2
  40. package/es/styles/theme/base.js +8 -14
  41. package/es/styles/theme/dark.d.ts +3 -4
  42. package/es/styles/theme/dark.js +40 -71
  43. package/es/styles/theme/light.d.ts +3 -4
  44. package/es/styles/theme/light.js +41 -32
  45. package/es/types/customToken.d.ts +1027 -0
  46. package/es/types/global.d.ts +12 -0
  47. package/es/types/index.d.ts +5 -17
  48. package/es/types/index.js +1 -0
  49. package/lib/ActionIcon/index.js +2 -2
  50. package/lib/ActionIcon/style.js +2 -2
  51. package/lib/EditableMessageList/index.js +6 -6
  52. package/lib/EditableText/index.js +1 -1
  53. package/lib/Highlighter/style.js +1 -2
  54. package/lib/Icon/index.d.ts +1 -0
  55. package/lib/Icon/index.js +5 -2
  56. package/lib/Input/index.d.ts +13 -0
  57. package/lib/Input/index.js +45 -0
  58. package/lib/Input/style.d.ts +6 -0
  59. package/lib/Input/style.js +70 -0
  60. package/lib/Markdown/style.js +5 -1
  61. package/lib/MessageInput/index.d.ts +2 -0
  62. package/lib/MessageInput/index.js +6 -5
  63. package/lib/SearchBar/index.d.ts +1 -2
  64. package/lib/SearchBar/index.js +8 -26
  65. package/lib/SearchBar/style.d.ts +1 -3
  66. package/lib/SearchBar/style.js +1 -20
  67. package/lib/Snippet/style.js +1 -2
  68. package/lib/StroyBook/style.js +6 -1
  69. package/lib/ThemeProvider/index.d.ts +2 -6
  70. package/lib/ThemeProvider/index.js +12 -23
  71. package/lib/components/ControlInput.d.ts +1 -1
  72. package/lib/components/ControlInput.js +9 -19
  73. package/lib/index.d.ts +1 -0
  74. package/lib/index.js +5 -0
  75. package/lib/styles/algorithms/generateColorPalette.d.ts +11 -0
  76. package/lib/styles/algorithms/generateColorPalette.js +72 -0
  77. package/lib/styles/{customStylish.d.ts → algorithms/generateCustomStylish.d.ts} +1 -1
  78. package/lib/styles/{customStylish.js → algorithms/generateCustomStylish.js} +11 -7
  79. package/lib/styles/algorithms/generateCustomToken.d.ts +3 -0
  80. package/lib/styles/{customToken.js → algorithms/generateCustomToken.js} +42 -17
  81. package/lib/styles/algorithms/generateTheme.d.ts +5 -0
  82. package/lib/styles/algorithms/generateTheme.js +59 -0
  83. package/lib/styles/colors.d.ts +38 -0
  84. package/lib/styles/colors.js +1828 -0
  85. package/lib/styles/index.d.ts +3 -3
  86. package/lib/styles/index.js +18 -4
  87. package/lib/styles/theme/base.d.ts +2 -2
  88. package/lib/styles/theme/base.js +10 -16
  89. package/lib/styles/theme/dark.d.ts +3 -4
  90. package/lib/styles/theme/dark.js +46 -96
  91. package/lib/styles/theme/light.d.ts +3 -4
  92. package/lib/styles/theme/light.js +48 -38
  93. package/lib/types/customToken.d.ts +1027 -0
  94. package/lib/types/global.d.ts +12 -0
  95. package/lib/types/index.d.ts +5 -17
  96. package/lib/{styles/theme → types}/index.js +3 -18
  97. package/package.json +1 -1
  98. package/es/styles/algorithms/colorRelationship.d.ts +0 -6
  99. package/es/styles/algorithms/colorRelationship.js +0 -88
  100. package/es/styles/algorithms/index.d.ts +0 -15
  101. package/es/styles/algorithms/index.js +0 -66
  102. package/es/styles/algorithms/paletteGenerator.d.ts +0 -51
  103. package/es/styles/algorithms/paletteGenerator.js +0 -74
  104. package/es/styles/antdTheme.d.ts +0 -2
  105. package/es/styles/antdTheme.js +0 -4
  106. package/es/styles/customToken.d.ts +0 -65
  107. package/es/styles/customToken.js +0 -24
  108. package/es/styles/theme/index.d.ts +0 -2
  109. package/es/styles/theme/index.js +0 -2
  110. package/lib/styles/algorithms/colorRelationship.d.ts +0 -6
  111. package/lib/styles/algorithms/colorRelationship.js +0 -87
  112. package/lib/styles/algorithms/index.d.ts +0 -15
  113. package/lib/styles/algorithms/index.js +0 -81
  114. package/lib/styles/algorithms/paletteGenerator.d.ts +0 -51
  115. package/lib/styles/algorithms/paletteGenerator.js +0 -91
  116. package/lib/styles/antdTheme.d.ts +0 -2
  117. package/lib/styles/antdTheme.js +0 -30
  118. package/lib/styles/customToken.d.ts +0 -65
  119. package/lib/styles/theme/index.d.ts +0 -2
@@ -1,3 +1,3 @@
1
- export * from './antdTheme';
2
- export * from './customStylish';
3
- export * from './customToken';
1
+ export { generateCustomStylish as lobeCustomStylish } from './algorithms/generateCustomStylish';
2
+ export { generateCustomToken as lobeCustomToken } from './algorithms/generateCustomToken';
3
+ export { generateTheme as lobeTheme } from './algorithms/generateTheme';
@@ -2,6 +2,10 @@ var __defProp = Object.defineProperty;
2
2
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
5
9
  var __copyProps = (to, from, except, desc) => {
6
10
  if (from && typeof from === "object" || typeof from === "function") {
7
11
  for (let key of __getOwnPropNames(from))
@@ -10,12 +14,22 @@ var __copyProps = (to, from, except, desc) => {
10
14
  }
11
15
  return to;
12
16
  };
13
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
14
17
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
18
 
16
19
  // src/styles/index.ts
17
20
  var styles_exports = {};
21
+ __export(styles_exports, {
22
+ lobeCustomStylish: () => import_generateCustomStylish.generateCustomStylish,
23
+ lobeCustomToken: () => import_generateCustomToken.generateCustomToken,
24
+ lobeTheme: () => import_generateTheme.generateTheme
25
+ });
18
26
  module.exports = __toCommonJS(styles_exports);
19
- __reExport(styles_exports, require("./antdTheme"), module.exports);
20
- __reExport(styles_exports, require("./customStylish"), module.exports);
21
- __reExport(styles_exports, require("./customToken"), module.exports);
27
+ var import_generateCustomStylish = require("./algorithms/generateCustomStylish");
28
+ var import_generateCustomToken = require("./algorithms/generateCustomToken");
29
+ var import_generateTheme = require("./algorithms/generateTheme");
30
+ // Annotate the CommonJS export names for ESM import in node:
31
+ 0 && (module.exports = {
32
+ lobeCustomStylish,
33
+ lobeCustomToken,
34
+ lobeTheme
35
+ });
@@ -1,2 +1,2 @@
1
- import { ThemeConfig } from 'antd';
2
- export declare const baseTheme: ThemeConfig;
1
+ import { AliasToken } from 'antd/es/theme/interface';
2
+ export declare const baseToken: Partial<AliasToken>;
@@ -19,29 +19,23 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
19
19
  // src/styles/theme/base.ts
20
20
  var base_exports = {};
21
21
  __export(base_exports, {
22
- baseTheme: () => baseTheme
22
+ baseToken: () => baseToken
23
23
  });
24
24
  module.exports = __toCommonJS(base_exports);
25
25
  var FONT_EMOJI = `"Segoe UI Emoji","Segoe UI Symbol","Apple Color Emoji","Twemoji Mozilla","Noto Color Emoji","Android Emoji"`;
26
26
  var FONT_EN = `"HarmonyOS Sans","Segoe UI","SF Pro Display",-apple-system,BlinkMacSystemFont,Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif`;
27
27
  var FONT_CN = `"HarmonyOS Sans SC","PingFang SC","Hiragino Sans GB","Microsoft Yahei UI","Microsoft Yahei","Source Han Sans CN",sans-serif`;
28
28
  var FONT_CODE = `ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace`;
29
- var baseTheme = {
30
- token: {
31
- colorInfo: "#0070f3",
32
- colorSuccess: "#50e3c2",
33
- colorWarning: "#f5a623",
34
- colorError: "#ee0000",
35
- borderRadius: 5,
36
- borderRadiusXS: 3,
37
- borderRadiusSM: 3,
38
- borderRadiusLG: 8,
39
- controlHeight: 36,
40
- fontFamily: [FONT_EN, FONT_CN, FONT_EMOJI].join(","),
41
- fontFamilyCode: [FONT_CODE, FONT_CN, FONT_EMOJI].join(",")
42
- }
29
+ var baseToken = {
30
+ borderRadius: 5,
31
+ borderRadiusXS: 3,
32
+ borderRadiusSM: 3,
33
+ borderRadiusLG: 8,
34
+ controlHeight: 36,
35
+ fontFamily: [FONT_EN, FONT_CN, FONT_EMOJI].join(","),
36
+ fontFamilyCode: [FONT_CODE, FONT_CN, FONT_EMOJI].join(",")
43
37
  };
44
38
  // Annotate the CommonJS export names for ESM import in node:
45
39
  0 && (module.exports = {
46
- baseTheme
40
+ baseToken
47
41
  });
@@ -1,4 +1,3 @@
1
- import { ThemeConfig } from 'antd';
2
- import { ColorPalettes } from '../algorithms';
3
- export declare const darkColorPalettes: ColorPalettes;
4
- export declare const darkTheme: ThemeConfig;
1
+ import { AliasToken } from 'antd/es/theme/interface';
2
+ declare const darkBaseToken: Partial<AliasToken>;
3
+ export default darkBaseToken;
@@ -19,106 +19,56 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
19
19
  // src/styles/theme/dark.ts
20
20
  var dark_exports = {};
21
21
  __export(dark_exports, {
22
- darkColorPalettes: () => darkColorPalettes,
23
- darkTheme: () => darkTheme
22
+ default: () => dark_default
24
23
  });
25
24
  module.exports = __toCommonJS(dark_exports);
26
- var import_antd = require("antd");
27
- var import_algorithms = require("../algorithms");
25
+ var import_generateColorPalette = require("../algorithms/generateColorPalette");
26
+ var import_colors = require("../colors");
28
27
  var import_base = require("./base");
29
- var cyanColors = [
30
- "rgba(0, 225, 242, 0.12)",
31
- "rgba(0, 232, 245, 0.22)",
32
- "rgba(0, 237, 250, 0.32)",
33
- "rgba(0, 243, 255, 0.42)",
34
- "rgba(0, 247, 255, 0.53)",
35
- "rgba(0, 246, 254, 0.65)",
36
- "rgba(0, 247, 253, 0.77)",
37
- "rgba(0, 245, 255, 0.75)",
38
- "rgba(0, 244, 255, 0.73)",
39
- "rgba(0, 239, 253, 0.72)",
40
- "rgba(0, 237, 253, 0.7)"
41
- ];
42
- var darkModeRelationship = (type) => {
43
- const key = type.toUpperCase()[0] + type.slice(1);
44
- return {
45
- [`color${key}Bg`]: 1,
46
- [`color${key}BgHover`]: 2,
47
- [`color${key}Border`]: 3,
48
- [`color${key}BorderHover`]: 4,
49
- [`color${key}Hover`]: 7,
50
- [`color${key}`]: 6,
51
- [`color${key}Active`]: 5,
52
- [`color${key}TextHover`]: 8,
53
- [`color${key}Text`]: 9,
54
- [`color${key}TextActive`]: 10
55
- };
56
- };
57
- var darkMode = (0, import_algorithms.genMapTokenAlgorithm)("dark", {
58
- lighter: {
59
- steps: 4,
60
- // 减少较亮颜色的数量
61
- targetBrightness: 0.8,
62
- // 降低最大亮度值
63
- saturationAdjustment: 0.6
64
- // 减小较亮颜色的饱和度调整
65
- // saturationScale: 1,
66
- },
67
- darker: {
68
- steps: 6,
69
- // 增加较暗颜色的数量
70
- targetBrightness: 0.2,
71
- // 降低最小亮度值
72
- saturationAdjustment: 0.4,
73
- // 增加较暗颜色的饱和度调整
74
- hueAdjustment: 1,
75
- // 保持暗色调的色相调整因子
76
- saturationScale: 1
77
- },
78
- reverse: true,
79
- relationship: darkModeRelationship
28
+ var primaryToken = (0, import_generateColorPalette.generateColorPalette)({
29
+ type: "Primary",
30
+ scale: import_colors.colorScales.bnw,
31
+ appearance: "dark"
32
+ });
33
+ var neutralToken = (0, import_generateColorPalette.generateColorNeutralPalette)({
34
+ scale: import_colors.colorScales.gray,
35
+ appearance: "dark"
36
+ });
37
+ var successToken = (0, import_generateColorPalette.generateColorPalette)({
38
+ type: "Success",
39
+ scale: import_colors.colorScales.lime,
40
+ appearance: "dark"
80
41
  });
81
- var darkColorPalettes = darkMode.palettes;
82
- var darkAlgorithm = (seedToken, mapToken) => ({
83
- ...import_antd.theme.darkAlgorithm(seedToken, mapToken),
84
- ...darkMode.tokens,
85
- "cyan-1": cyanColors[1],
86
- "cyan-2": cyanColors[2],
87
- "cyan-3": cyanColors[3],
88
- "cyan-4": cyanColors[4],
89
- "cyan-5": cyanColors[5],
90
- "cyan-6": cyanColors[6],
91
- "cyan-7": cyanColors[7],
92
- "cyan-8": cyanColors[8],
93
- "cyan-9": cyanColors[9],
94
- "cyan-10": cyanColors[10]
42
+ var warningToken = (0, import_generateColorPalette.generateColorPalette)({
43
+ type: "Warning",
44
+ scale: import_colors.colorScales.amber,
45
+ appearance: "dark"
95
46
  });
96
- var darkTheme = {
97
- token: {
98
- ...import_base.baseTheme.token,
99
- colorTextLightSolid: "#000000",
100
- colorBgLayout: "#000000",
101
- colorBgContainer: "#111111",
102
- colorBgElevated: "#222222",
103
- colorBgSpotlight: "#444444",
104
- colorBorder: "#333333",
105
- colorBorderSecondary: "#333333",
106
- colorText: "#ffffff",
107
- colorTextSecondary: "#999999",
108
- colorTextTertiary: "#888888",
109
- colorTextQuaternary: "#666666",
110
- colorPrimary: "#ffffff",
111
- colorFillQuaternary: "rgba(0,0,0,0)",
112
- boxShadow: "0 12px 20px 6px rgb(0 0 0 / 0.08)",
113
- boxShadowSecondary: "0 2px 8px 2px rgb(0 0 0 / 0.07), 0 2px 4px -1px rgb(0 0 0 / 0.04)",
114
- colorLinkHover: "#3291ff",
115
- colorLink: "#0070f3",
116
- colorLinkActive: "#0761d1"
117
- },
118
- algorithm: darkAlgorithm
47
+ var errorToken = (0, import_generateColorPalette.generateColorPalette)({
48
+ type: "Error",
49
+ scale: import_colors.colorScales.pink,
50
+ appearance: "dark"
51
+ });
52
+ var infoToken = (0, import_generateColorPalette.generateColorPalette)({
53
+ type: "Info",
54
+ scale: import_colors.colorScales.sky,
55
+ appearance: "dark"
56
+ });
57
+ var darkBaseToken = {
58
+ ...import_base.baseToken,
59
+ ...primaryToken,
60
+ ...neutralToken,
61
+ ...successToken,
62
+ ...warningToken,
63
+ ...errorToken,
64
+ ...infoToken,
65
+ colorTextLightSolid: neutralToken.colorBgLayout,
66
+ colorLinkHover: infoToken.colorInfoTextHover,
67
+ colorLink: infoToken.colorInfoText,
68
+ colorLinkActive: infoToken.colorInfoTextActive,
69
+ boxShadow: "0 12px 20px 6px rgb(0 0 0 / 0.08)",
70
+ boxShadowSecondary: "0 2px 8px 2px rgb(0 0 0 / 0.07), 0 2px 4px -1px rgb(0 0 0 / 0.04)"
119
71
  };
72
+ var dark_default = darkBaseToken;
120
73
  // Annotate the CommonJS export names for ESM import in node:
121
- 0 && (module.exports = {
122
- darkColorPalettes,
123
- darkTheme
124
- });
74
+ 0 && (module.exports = {});
@@ -1,4 +1,3 @@
1
- import { ThemeConfig } from 'antd';
2
- import { ColorPalettes } from '../algorithms';
3
- export declare const lightColorPalettes: ColorPalettes;
4
- export declare const lightTheme: ThemeConfig;
1
+ import { AliasToken } from 'antd/es/theme/interface';
2
+ declare const lightBaseToken: Partial<AliasToken>;
3
+ export default lightBaseToken;
@@ -19,46 +19,56 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
19
19
  // src/styles/theme/light.ts
20
20
  var light_exports = {};
21
21
  __export(light_exports, {
22
- lightColorPalettes: () => lightColorPalettes,
23
- lightTheme: () => lightTheme
22
+ default: () => light_default
24
23
  });
25
24
  module.exports = __toCommonJS(light_exports);
26
- var import_algorithms = require("../algorithms");
25
+ var import_generateColorPalette = require("../algorithms/generateColorPalette");
26
+ var import_colors = require("../colors");
27
27
  var import_base = require("./base");
28
- var lightMode = (0, import_algorithms.genMapTokenAlgorithm)("light");
29
- var lightColorPalettes = lightMode.palettes;
30
- var lightTheme = {
31
- token: {
32
- ...import_base.baseTheme.token,
33
- colorTextLightSolid: "#ffffff",
34
- colorBgLayout: "#fafafa",
35
- colorBgContainer: "#ffffff",
36
- colorBgElevated: "#f2f2f2",
37
- colorBgSpotlight: "#999999",
38
- colorBorder: "#eaeaea",
39
- colorBorderSecondary: "#eaeaea",
40
- colorText: "#000000",
41
- colorTextSecondary: "#444444",
42
- colorTextTertiary: "#666666",
43
- colorTextQuaternary: "#888888",
44
- colorPrimary: "#000000",
45
- colorFill: "rgba(0,0,0,0.1)",
46
- colorFillSecondary: "rgba(0,0,0,0.075)",
47
- colorFillTertiary: "rgba(0,0,0,0.05)",
48
- colorFillQuaternary: "rgba(0,0,0,0)",
49
- boxShadow: "0 12px 20px 6px rgb(104 112 118 / 0.08)",
50
- boxShadowSecondary: "0 2px 8px 2px rgb(104 112 118 / 0.07), 0 2px 4px -1px rgb(104 112 118 / 0.04)",
51
- colorLinkHover: "#3291ff",
52
- colorLink: "#0070f3",
53
- colorLinkActive: "#0761d1"
54
- },
55
- algorithm: (seedToken, mapToken) => ({
56
- ...mapToken,
57
- ...lightMode.tokens
58
- })
28
+ var primaryToken = (0, import_generateColorPalette.generateColorPalette)({
29
+ type: "Primary",
30
+ scale: import_colors.colorScales.bnw,
31
+ appearance: "light"
32
+ });
33
+ var neutralToken = (0, import_generateColorPalette.generateColorNeutralPalette)({
34
+ scale: import_colors.colorScales.gray,
35
+ appearance: "light"
36
+ });
37
+ var successToken = (0, import_generateColorPalette.generateColorPalette)({
38
+ type: "Success",
39
+ scale: import_colors.colorScales.grass,
40
+ appearance: "light"
41
+ });
42
+ var warningToken = (0, import_generateColorPalette.generateColorPalette)({
43
+ type: "Warning",
44
+ scale: import_colors.colorScales.orange,
45
+ appearance: "light"
46
+ });
47
+ var errorToken = (0, import_generateColorPalette.generateColorPalette)({
48
+ type: "Error",
49
+ scale: import_colors.colorScales.tomato,
50
+ appearance: "light"
51
+ });
52
+ var infoToken = (0, import_generateColorPalette.generateColorPalette)({
53
+ type: "Info",
54
+ scale: import_colors.colorScales.blue,
55
+ appearance: "light"
56
+ });
57
+ var lightBaseToken = {
58
+ ...import_base.baseToken,
59
+ ...primaryToken,
60
+ ...neutralToken,
61
+ ...successToken,
62
+ ...warningToken,
63
+ ...errorToken,
64
+ ...infoToken,
65
+ colorTextLightSolid: neutralToken.colorBgLayout,
66
+ colorLinkHover: infoToken.colorInfoTextHover,
67
+ colorLink: infoToken.colorInfoText,
68
+ colorLinkActive: infoToken.colorInfoTextActive,
69
+ boxShadow: "0 12px 20px 6px rgb(104 112 118 / 0.08)",
70
+ boxShadowSecondary: "0 2px 8px 2px rgb(104 112 118 / 0.07), 0 2px 4px -1px rgb(104 112 118 / 0.04)"
59
71
  };
72
+ var light_default = lightBaseToken;
60
73
  // Annotate the CommonJS export names for ESM import in node:
61
- 0 && (module.exports = {
62
- lightColorPalettes,
63
- lightTheme
64
- });
74
+ 0 && (module.exports = {});