@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.
- package/es/ActionIcon/index.js +2 -2
- package/es/ActionIcon/style.js +1 -1
- package/es/EditableMessageList/index.js +6 -6
- package/es/EditableText/index.js +1 -4
- package/es/Highlighter/style.js +1 -2
- package/es/Icon/index.d.ts +1 -0
- package/es/Icon/index.js +5 -2
- package/es/Input/index.d.ts +13 -0
- package/es/Input/index.js +38 -0
- package/es/Input/style.d.ts +6 -0
- package/es/Input/style.js +12 -0
- package/es/Markdown/style.js +1 -1
- package/es/MessageInput/index.d.ts +2 -0
- package/es/MessageInput/index.js +10 -8
- package/es/SearchBar/index.d.ts +1 -2
- package/es/SearchBar/index.js +9 -18
- package/es/SearchBar/style.d.ts +1 -3
- package/es/SearchBar/style.js +6 -8
- package/es/Snippet/style.js +1 -2
- package/es/StroyBook/style.js +1 -1
- package/es/ThemeProvider/index.d.ts +2 -6
- package/es/ThemeProvider/index.js +8 -18
- package/es/components/ControlInput.d.ts +1 -1
- package/es/components/ControlInput.js +20 -23
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/styles/algorithms/generateColorPalette.d.ts +11 -0
- package/es/styles/algorithms/generateColorPalette.js +31 -0
- package/es/styles/{customStylish.d.ts → algorithms/generateCustomStylish.d.ts} +1 -1
- package/es/styles/{customStylish.js → algorithms/generateCustomStylish.js} +1 -1
- package/es/styles/algorithms/generateCustomToken.d.ts +3 -0
- package/es/styles/algorithms/generateCustomToken.js +57 -0
- package/es/styles/algorithms/generateTheme.d.ts +5 -0
- package/es/styles/algorithms/generateTheme.js +18 -0
- package/es/styles/colors.d.ts +38 -0
- package/es/styles/colors.js +176 -0
- package/es/styles/index.d.ts +3 -3
- package/es/styles/index.js +3 -3
- package/es/styles/theme/base.d.ts +2 -2
- package/es/styles/theme/base.js +8 -14
- package/es/styles/theme/dark.d.ts +3 -4
- package/es/styles/theme/dark.js +40 -71
- package/es/styles/theme/light.d.ts +3 -4
- package/es/styles/theme/light.js +41 -32
- package/es/types/customToken.d.ts +1027 -0
- package/es/types/global.d.ts +12 -0
- package/es/types/index.d.ts +5 -17
- package/es/types/index.js +1 -0
- package/lib/ActionIcon/index.js +2 -2
- package/lib/ActionIcon/style.js +2 -2
- package/lib/EditableMessageList/index.js +6 -6
- package/lib/EditableText/index.js +1 -1
- package/lib/Highlighter/style.js +1 -2
- package/lib/Icon/index.d.ts +1 -0
- package/lib/Icon/index.js +5 -2
- package/lib/Input/index.d.ts +13 -0
- package/lib/Input/index.js +45 -0
- package/lib/Input/style.d.ts +6 -0
- package/lib/Input/style.js +70 -0
- package/lib/Markdown/style.js +5 -1
- package/lib/MessageInput/index.d.ts +2 -0
- package/lib/MessageInput/index.js +6 -5
- package/lib/SearchBar/index.d.ts +1 -2
- package/lib/SearchBar/index.js +8 -26
- package/lib/SearchBar/style.d.ts +1 -3
- package/lib/SearchBar/style.js +1 -20
- package/lib/Snippet/style.js +1 -2
- package/lib/StroyBook/style.js +6 -1
- package/lib/ThemeProvider/index.d.ts +2 -6
- package/lib/ThemeProvider/index.js +12 -23
- package/lib/components/ControlInput.d.ts +1 -1
- package/lib/components/ControlInput.js +9 -19
- package/lib/index.d.ts +1 -0
- package/lib/index.js +5 -0
- package/lib/styles/algorithms/generateColorPalette.d.ts +11 -0
- package/lib/styles/algorithms/generateColorPalette.js +72 -0
- package/lib/styles/{customStylish.d.ts → algorithms/generateCustomStylish.d.ts} +1 -1
- package/lib/styles/{customStylish.js → algorithms/generateCustomStylish.js} +11 -7
- package/lib/styles/algorithms/generateCustomToken.d.ts +3 -0
- package/lib/styles/{customToken.js → algorithms/generateCustomToken.js} +42 -17
- package/lib/styles/algorithms/generateTheme.d.ts +5 -0
- package/lib/styles/algorithms/generateTheme.js +59 -0
- package/lib/styles/colors.d.ts +38 -0
- package/lib/styles/colors.js +1828 -0
- package/lib/styles/index.d.ts +3 -3
- package/lib/styles/index.js +18 -4
- package/lib/styles/theme/base.d.ts +2 -2
- package/lib/styles/theme/base.js +10 -16
- package/lib/styles/theme/dark.d.ts +3 -4
- package/lib/styles/theme/dark.js +46 -96
- package/lib/styles/theme/light.d.ts +3 -4
- package/lib/styles/theme/light.js +48 -38
- package/lib/types/customToken.d.ts +1027 -0
- package/lib/types/global.d.ts +12 -0
- package/lib/types/index.d.ts +5 -17
- package/lib/{styles/theme → types}/index.js +3 -18
- package/package.json +1 -1
- package/es/styles/algorithms/colorRelationship.d.ts +0 -6
- package/es/styles/algorithms/colorRelationship.js +0 -88
- package/es/styles/algorithms/index.d.ts +0 -15
- package/es/styles/algorithms/index.js +0 -66
- package/es/styles/algorithms/paletteGenerator.d.ts +0 -51
- package/es/styles/algorithms/paletteGenerator.js +0 -74
- package/es/styles/antdTheme.d.ts +0 -2
- package/es/styles/antdTheme.js +0 -4
- package/es/styles/customToken.d.ts +0 -65
- package/es/styles/customToken.js +0 -24
- package/es/styles/theme/index.d.ts +0 -2
- package/es/styles/theme/index.js +0 -2
- package/lib/styles/algorithms/colorRelationship.d.ts +0 -6
- package/lib/styles/algorithms/colorRelationship.js +0 -87
- package/lib/styles/algorithms/index.d.ts +0 -15
- package/lib/styles/algorithms/index.js +0 -81
- package/lib/styles/algorithms/paletteGenerator.d.ts +0 -51
- package/lib/styles/algorithms/paletteGenerator.js +0 -91
- package/lib/styles/antdTheme.d.ts +0 -2
- package/lib/styles/antdTheme.js +0 -30
- package/lib/styles/customToken.d.ts +0 -65
- package/lib/styles/theme/index.d.ts +0 -2
package/lib/styles/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export { generateCustomStylish as lobeCustomStylish } from './algorithms/generateCustomStylish';
|
|
2
|
+
export { generateCustomToken as lobeCustomToken } from './algorithms/generateCustomToken';
|
|
3
|
+
export { generateTheme as lobeTheme } from './algorithms/generateTheme';
|
package/lib/styles/index.js
CHANGED
|
@@ -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
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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 {
|
|
2
|
-
export declare const
|
|
1
|
+
import { AliasToken } from 'antd/es/theme/interface';
|
|
2
|
+
export declare const baseToken: Partial<AliasToken>;
|
package/lib/styles/theme/base.js
CHANGED
|
@@ -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
|
-
|
|
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
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
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
|
-
|
|
40
|
+
baseToken
|
|
47
41
|
});
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export
|
|
4
|
-
export declare const darkTheme: ThemeConfig;
|
|
1
|
+
import { AliasToken } from 'antd/es/theme/interface';
|
|
2
|
+
declare const darkBaseToken: Partial<AliasToken>;
|
|
3
|
+
export default darkBaseToken;
|
package/lib/styles/theme/dark.js
CHANGED
|
@@ -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
|
-
|
|
23
|
-
darkTheme: () => darkTheme
|
|
22
|
+
default: () => dark_default
|
|
24
23
|
});
|
|
25
24
|
module.exports = __toCommonJS(dark_exports);
|
|
26
|
-
var
|
|
27
|
-
var
|
|
25
|
+
var import_generateColorPalette = require("../algorithms/generateColorPalette");
|
|
26
|
+
var import_colors = require("../colors");
|
|
28
27
|
var import_base = require("./base");
|
|
29
|
-
var
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
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
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
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
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
export
|
|
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
|
-
|
|
23
|
-
lightTheme: () => lightTheme
|
|
22
|
+
default: () => light_default
|
|
24
23
|
});
|
|
25
24
|
module.exports = __toCommonJS(light_exports);
|
|
26
|
-
var
|
|
25
|
+
var import_generateColorPalette = require("../algorithms/generateColorPalette");
|
|
26
|
+
var import_colors = require("../colors");
|
|
27
27
|
var import_base = require("./base");
|
|
28
|
-
var
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
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 = {});
|