@kwiz/fluentui 1.0.74 → 1.0.76
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/.github/workflows/npm-publish.yml +24 -24
- package/LICENSE +21 -21
- package/README.md +53 -53
- package/dist/@types/forwardRef.d.ts +0 -0
- package/dist/@types/forwardRef.js +1 -0
- package/dist/@types/forwardRef.js.map +1 -0
- package/dist/controls/error-boundary copy.d.ts +23 -0
- package/dist/controls/error-boundary copy.js +33 -0
- package/dist/controls/error-boundary copy.js.map +1 -0
- package/dist/controls/menu.d.ts +3 -1
- package/dist/controls/menu.js +44 -26
- package/dist/controls/menu.js.map +1 -1
- package/dist/controls/search.js +19 -11
- package/dist/controls/search.js.map +1 -1
- package/dist/controls/svg.js +21 -21
- package/dist/controls/svg.js.map +1 -1
- package/dist/helpers/common.d.ts +4 -0
- package/dist/helpers/common.js +2 -0
- package/dist/helpers/common.js.map +1 -0
- package/dist/helpers/context.d.ts +26 -0
- package/dist/helpers/context.js +15 -0
- package/dist/helpers/context.js.map +1 -0
- package/dist/helpers/drag-drop/exports.d.ts +12 -0
- package/dist/helpers/drag-drop/exports.js +3 -0
- package/dist/helpers/drag-drop/exports.js.map +1 -0
- package/dist/helpers/exports.d.ts +7 -0
- package/dist/helpers/exports.js +8 -0
- package/dist/helpers/exports.js.map +1 -0
- package/dist/helpers/hooks.d.ts +3 -1
- package/dist/helpers/hooks.js +18 -0
- package/dist/helpers/hooks.js.map +1 -1
- package/package.json +85 -84
- package/src/_modules/config.ts +9 -9
- package/src/_modules/constants.ts +3 -3
- package/src/controls/ColorPickerDialog.tsx +83 -83
- package/src/controls/accordion.tsx +62 -62
- package/src/controls/button.tsx +180 -180
- package/src/controls/canvas/CustomEventTargetBase.ts +32 -32
- package/src/controls/canvas/DrawPad.tsx +296 -296
- package/src/controls/canvas/DrawPadManager.ts +694 -694
- package/src/controls/canvas/bezier.ts +109 -109
- package/src/controls/canvas/point.ts +44 -44
- package/src/controls/card-list.tsx +31 -31
- package/src/controls/card.tsx +77 -77
- package/src/controls/centered.tsx +14 -14
- package/src/controls/date.tsx +87 -87
- package/src/controls/diagram-picker.tsx +96 -96
- package/src/controls/divider.tsx +15 -15
- package/src/controls/dropdown.tsx +66 -66
- package/src/controls/error-boundary.tsx +41 -41
- package/src/controls/field-editor.tsx +42 -42
- package/src/controls/file-upload.tsx +155 -155
- package/src/controls/horizontal.tsx +48 -48
- package/src/controls/html-editor/editor.tsx +182 -182
- package/src/controls/index.ts +33 -33
- package/src/controls/input.tsx +160 -160
- package/src/controls/kwizoverflow.tsx +106 -106
- package/src/controls/list.tsx +119 -119
- package/src/controls/loading.tsx +10 -10
- package/src/controls/menu.tsx +195 -173
- package/src/controls/merge-text.tsx +126 -126
- package/src/controls/please-wait.tsx +32 -32
- package/src/controls/progress-bar.tsx +109 -109
- package/src/controls/prompt.tsx +121 -121
- package/src/controls/qrcode.tsx +36 -36
- package/src/controls/search.tsx +71 -61
- package/src/controls/section.tsx +133 -133
- package/src/controls/svg.tsx +138 -138
- package/src/controls/toolbar.tsx +46 -46
- package/src/controls/vertical-content.tsx +49 -49
- package/src/controls/vertical.tsx +42 -42
- package/src/helpers/block-nav.tsx +88 -88
- package/src/helpers/context-const.ts +29 -29
- package/src/helpers/context-export.tsx +77 -77
- package/src/helpers/context-internal.ts +13 -13
- package/src/helpers/drag-drop/drag-drop-container.tsx +53 -53
- package/src/helpers/drag-drop/drag-drop-context-internal.tsx +9 -9
- package/src/helpers/drag-drop/drag-drop-context.tsx +61 -61
- package/src/helpers/drag-drop/drag-drop.types.ts +21 -21
- package/src/helpers/drag-drop/index.ts +12 -12
- package/src/helpers/drag-drop/readme.md +75 -75
- package/src/helpers/drag-drop/use-draggable.ts +47 -47
- package/src/helpers/drag-drop/use-droppable.ts +38 -38
- package/src/helpers/forwardRef.ts +7 -7
- package/src/helpers/hooks-events.ts +149 -149
- package/src/helpers/hooks.tsx +162 -141
- package/src/helpers/index.ts +8 -8
- package/src/helpers/use-alerts.tsx +74 -74
- package/src/helpers/use-editable-control.tsx +37 -37
- package/src/helpers/use-toast.tsx +29 -29
- package/src/index.ts +2 -2
- package/src/styles/index.ts +1 -1
- package/src/styles/styles.ts +104 -104
- package/src/styles/theme.ts +90 -90
package/src/styles/styles.ts
CHANGED
|
@@ -1,105 +1,105 @@
|
|
|
1
|
-
import { GriffelStyle, makeStyles, tokens } from "@fluentui/react-components";
|
|
2
|
-
|
|
3
|
-
export module mixins {
|
|
4
|
-
export const main: GriffelStyle = {
|
|
5
|
-
flexShrink: 1,
|
|
6
|
-
flexGrow: 1
|
|
7
|
-
};
|
|
8
|
-
export const clickable: GriffelStyle = {
|
|
9
|
-
cursor: "pointer",
|
|
10
|
-
['& label']: {
|
|
11
|
-
cursor: "pointer"
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export const box: GriffelStyle = {
|
|
15
|
-
padding: tokens.spacingHorizontalM,
|
|
16
|
-
borderRadius: tokens.borderRadiusMedium,
|
|
17
|
-
boxShadow: tokens.shadow4,
|
|
18
|
-
margin: tokens.spacingHorizontalXXS
|
|
19
|
-
}
|
|
20
|
-
export const float: GriffelStyle = {
|
|
21
|
-
...box,
|
|
22
|
-
/** make buttons work */
|
|
23
|
-
position: "relative",
|
|
24
|
-
/** make buttons work */
|
|
25
|
-
maxWidth: "33%",
|
|
26
|
-
/** stop bleeding into page */
|
|
27
|
-
overflowX: "hidden",
|
|
28
|
-
|
|
29
|
-
['& img']: {
|
|
30
|
-
maxWidth: "100%"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export const flex: GriffelStyle = {
|
|
35
|
-
display: 'flex',
|
|
36
|
-
flexWrap: 'nowrap',
|
|
37
|
-
rowGap: tokens.spacingVerticalM,
|
|
38
|
-
columnGap: tokens.spacingVerticalM,
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export const wrap: GriffelStyle = {
|
|
42
|
-
flexWrap: "wrap"
|
|
43
|
-
}
|
|
44
|
-
export const nogap: GriffelStyle = {
|
|
45
|
-
rowGap: 0,
|
|
46
|
-
columnGap: 0
|
|
47
|
-
}
|
|
48
|
-
export const ellipsis: GriffelStyle = {
|
|
49
|
-
whiteSpace: 'nowrap',
|
|
50
|
-
display: 'block',
|
|
51
|
-
overflow: 'hidden',
|
|
52
|
-
textOverflow: 'ellipsis'
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
// export const box: GriffelStyle = {
|
|
56
|
-
// }
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
export const KnownClassNames = {
|
|
60
|
-
print: 'print-root',
|
|
61
|
-
printHide: 'print-hide',
|
|
62
|
-
printShow: 'print-show',
|
|
63
|
-
section: 'kfui-section',
|
|
64
|
-
vertical: 'kfui-vertical',
|
|
65
|
-
horizontal: 'kfui-horizontal',
|
|
66
|
-
list: 'kfui-list',
|
|
67
|
-
accordion: 'kfui-accordion',
|
|
68
|
-
accordionHeader: 'kfui-accordion-header',
|
|
69
|
-
accordionBody: 'kfui-accordion-body',
|
|
70
|
-
accordionBodyWrapper: 'kfui-accordion-body-wrapper',
|
|
71
|
-
isOpen: 'is-opened',
|
|
72
|
-
progressBarStepLabel: 'step-label',
|
|
73
|
-
left: 'float-left',
|
|
74
|
-
right: 'float-right'
|
|
75
|
-
}
|
|
76
|
-
export const useCommonStyles = makeStyles({
|
|
77
|
-
hintLabel: {
|
|
78
|
-
color: tokens.colorNeutralForeground3,
|
|
79
|
-
fontSize: tokens.fontSizeBase200,
|
|
80
|
-
fontWeight: tokens.fontWeightRegular,
|
|
81
|
-
lineHeight: tokens.lineHeightBase200
|
|
82
|
-
},
|
|
83
|
-
validationLabel: {
|
|
84
|
-
color: tokens.colorPaletteRedForeground1,
|
|
85
|
-
fontSize: tokens.fontSizeBase200,
|
|
86
|
-
fontWeight: tokens.fontWeightRegular,
|
|
87
|
-
lineHeight: tokens.lineHeightBase200
|
|
88
|
-
},
|
|
89
|
-
fullscreen: {
|
|
90
|
-
position: "fixed",
|
|
91
|
-
top: 0, bottom: 0, left: 0, right: 0,
|
|
92
|
-
zIndex: 1,
|
|
93
|
-
backgroundColor: tokens.colorNeutralBackground1,
|
|
94
|
-
overflow: "auto",
|
|
95
|
-
padding: tokens.spacingHorizontalL,
|
|
96
|
-
paddingLeft: "20px",
|
|
97
|
-
paddingRight: "20px"
|
|
98
|
-
}
|
|
99
|
-
});
|
|
100
|
-
|
|
101
|
-
export const commonSizes = {
|
|
102
|
-
widthMedium: 360,
|
|
103
|
-
widthWide: 520,
|
|
104
|
-
extraWidthWide: 820,
|
|
1
|
+
import { GriffelStyle, makeStyles, tokens } from "@fluentui/react-components";
|
|
2
|
+
|
|
3
|
+
export module mixins {
|
|
4
|
+
export const main: GriffelStyle = {
|
|
5
|
+
flexShrink: 1,
|
|
6
|
+
flexGrow: 1
|
|
7
|
+
};
|
|
8
|
+
export const clickable: GriffelStyle = {
|
|
9
|
+
cursor: "pointer",
|
|
10
|
+
['& label']: {
|
|
11
|
+
cursor: "pointer"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export const box: GriffelStyle = {
|
|
15
|
+
padding: tokens.spacingHorizontalM,
|
|
16
|
+
borderRadius: tokens.borderRadiusMedium,
|
|
17
|
+
boxShadow: tokens.shadow4,
|
|
18
|
+
margin: tokens.spacingHorizontalXXS
|
|
19
|
+
}
|
|
20
|
+
export const float: GriffelStyle = {
|
|
21
|
+
...box,
|
|
22
|
+
/** make buttons work */
|
|
23
|
+
position: "relative",
|
|
24
|
+
/** make buttons work */
|
|
25
|
+
maxWidth: "33%",
|
|
26
|
+
/** stop bleeding into page */
|
|
27
|
+
overflowX: "hidden",
|
|
28
|
+
|
|
29
|
+
['& img']: {
|
|
30
|
+
maxWidth: "100%"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export const flex: GriffelStyle = {
|
|
35
|
+
display: 'flex',
|
|
36
|
+
flexWrap: 'nowrap',
|
|
37
|
+
rowGap: tokens.spacingVerticalM,
|
|
38
|
+
columnGap: tokens.spacingVerticalM,
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export const wrap: GriffelStyle = {
|
|
42
|
+
flexWrap: "wrap"
|
|
43
|
+
}
|
|
44
|
+
export const nogap: GriffelStyle = {
|
|
45
|
+
rowGap: 0,
|
|
46
|
+
columnGap: 0
|
|
47
|
+
}
|
|
48
|
+
export const ellipsis: GriffelStyle = {
|
|
49
|
+
whiteSpace: 'nowrap',
|
|
50
|
+
display: 'block',
|
|
51
|
+
overflow: 'hidden',
|
|
52
|
+
textOverflow: 'ellipsis'
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// export const box: GriffelStyle = {
|
|
56
|
+
// }
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export const KnownClassNames = {
|
|
60
|
+
print: 'print-root',
|
|
61
|
+
printHide: 'print-hide',
|
|
62
|
+
printShow: 'print-show',
|
|
63
|
+
section: 'kfui-section',
|
|
64
|
+
vertical: 'kfui-vertical',
|
|
65
|
+
horizontal: 'kfui-horizontal',
|
|
66
|
+
list: 'kfui-list',
|
|
67
|
+
accordion: 'kfui-accordion',
|
|
68
|
+
accordionHeader: 'kfui-accordion-header',
|
|
69
|
+
accordionBody: 'kfui-accordion-body',
|
|
70
|
+
accordionBodyWrapper: 'kfui-accordion-body-wrapper',
|
|
71
|
+
isOpen: 'is-opened',
|
|
72
|
+
progressBarStepLabel: 'step-label',
|
|
73
|
+
left: 'float-left',
|
|
74
|
+
right: 'float-right'
|
|
75
|
+
}
|
|
76
|
+
export const useCommonStyles = makeStyles({
|
|
77
|
+
hintLabel: {
|
|
78
|
+
color: tokens.colorNeutralForeground3,
|
|
79
|
+
fontSize: tokens.fontSizeBase200,
|
|
80
|
+
fontWeight: tokens.fontWeightRegular,
|
|
81
|
+
lineHeight: tokens.lineHeightBase200
|
|
82
|
+
},
|
|
83
|
+
validationLabel: {
|
|
84
|
+
color: tokens.colorPaletteRedForeground1,
|
|
85
|
+
fontSize: tokens.fontSizeBase200,
|
|
86
|
+
fontWeight: tokens.fontWeightRegular,
|
|
87
|
+
lineHeight: tokens.lineHeightBase200
|
|
88
|
+
},
|
|
89
|
+
fullscreen: {
|
|
90
|
+
position: "fixed",
|
|
91
|
+
top: 0, bottom: 0, left: 0, right: 0,
|
|
92
|
+
zIndex: 1,
|
|
93
|
+
backgroundColor: tokens.colorNeutralBackground1,
|
|
94
|
+
overflow: "auto",
|
|
95
|
+
padding: tokens.spacingHorizontalL,
|
|
96
|
+
paddingLeft: "20px",
|
|
97
|
+
paddingRight: "20px"
|
|
98
|
+
}
|
|
99
|
+
});
|
|
100
|
+
|
|
101
|
+
export const commonSizes = {
|
|
102
|
+
widthMedium: 360,
|
|
103
|
+
widthWide: 520,
|
|
104
|
+
extraWidthWide: 820,
|
|
105
105
|
}
|
package/src/styles/theme.ts
CHANGED
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
import { BrandVariants, Theme, createDarkTheme, createLightTheme, teamsDarkTheme, teamsLightTheme } from "@fluentui/react-components";
|
|
2
|
-
|
|
3
|
-
export interface iThemeContext {
|
|
4
|
-
teams?: boolean;
|
|
5
|
-
dark?: boolean;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export function getTheme(ctx: iThemeContext, t: BrandVariants = kThemeDefault) {
|
|
9
|
-
return ctx.dark
|
|
10
|
-
? getDarkTheme(ctx, t)
|
|
11
|
-
: getLightTheme(ctx, t);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
const kThemeDefault: BrandVariants = {
|
|
16
|
-
10: "#04010A",
|
|
17
|
-
20: "#16103B",
|
|
18
|
-
30: "#17176F",
|
|
19
|
-
40: "#0F1D9A",
|
|
20
|
-
50: "#2F2AA1",
|
|
21
|
-
60: "#4338A8",
|
|
22
|
-
70: "#5546AF",
|
|
23
|
-
80: "#6555B6",
|
|
24
|
-
90: "#7563BD",
|
|
25
|
-
100: "#8472C4",
|
|
26
|
-
110: "#9282CB",
|
|
27
|
-
120: "#A191D2",
|
|
28
|
-
130: "#AFA1D9",
|
|
29
|
-
140: "#BDB1E0",
|
|
30
|
-
150: "#CBC1E7",
|
|
31
|
-
160: "#D9D2EE"
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
const kThemeOrange: BrandVariants = {
|
|
35
|
-
10: "#040301",
|
|
36
|
-
20: "#1E170A",
|
|
37
|
-
30: "#312610",
|
|
38
|
-
40: "#403112",
|
|
39
|
-
50: "#503D14",
|
|
40
|
-
60: "#604915",
|
|
41
|
-
70: "#705516",
|
|
42
|
-
80: "#816216",
|
|
43
|
-
90: "#926E16",
|
|
44
|
-
100: "#A37B15",
|
|
45
|
-
110: "#B58914",
|
|
46
|
-
120: "#C79612",
|
|
47
|
-
130: "#DAA40E",
|
|
48
|
-
140: "#EDB208",
|
|
49
|
-
150: "#FFC001",
|
|
50
|
-
160: "#FFD47F"
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
const kThemeSecondary: BrandVariants = {
|
|
54
|
-
10: "#020304",
|
|
55
|
-
20: "#101A1D",
|
|
56
|
-
30: "#162B32",
|
|
57
|
-
40: "#1A3742",
|
|
58
|
-
50: "#1D4552",
|
|
59
|
-
60: "#1F5363",
|
|
60
|
-
70: "#216175",
|
|
61
|
-
80: "#227087",
|
|
62
|
-
90: "#227F9A",
|
|
63
|
-
100: "#208EAD",
|
|
64
|
-
110: "#1E9EC0",
|
|
65
|
-
120: "#1AADD4",
|
|
66
|
-
130: "#12BEE8",
|
|
67
|
-
140: "#02CEFD",
|
|
68
|
-
150: "#6BDAFF",
|
|
69
|
-
160: "#A0E5FF"
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
function getLightTheme(ctx: iThemeContext, t: BrandVariants = kThemeDefault) {
|
|
73
|
-
if (ctx.teams) return teamsLightTheme;
|
|
74
|
-
//return jsonClone(webLightTheme);
|
|
75
|
-
const lightTheme: Theme = {
|
|
76
|
-
...createLightTheme(t),
|
|
77
|
-
};
|
|
78
|
-
return lightTheme;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
function getDarkTheme(ctx: iThemeContext, t: BrandVariants = kThemeDefault) {
|
|
82
|
-
if (ctx.teams) return teamsDarkTheme;
|
|
83
|
-
//return jsonClone(webDarkTheme);
|
|
84
|
-
const darkTheme: Theme = {
|
|
85
|
-
...createDarkTheme(t),
|
|
86
|
-
};
|
|
87
|
-
|
|
88
|
-
darkTheme.colorBrandForeground1 = t[110];
|
|
89
|
-
darkTheme.colorBrandForeground2 = t[120];
|
|
90
|
-
return darkTheme;
|
|
1
|
+
import { BrandVariants, Theme, createDarkTheme, createLightTheme, teamsDarkTheme, teamsLightTheme } from "@fluentui/react-components";
|
|
2
|
+
|
|
3
|
+
export interface iThemeContext {
|
|
4
|
+
teams?: boolean;
|
|
5
|
+
dark?: boolean;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export function getTheme(ctx: iThemeContext, t: BrandVariants = kThemeDefault) {
|
|
9
|
+
return ctx.dark
|
|
10
|
+
? getDarkTheme(ctx, t)
|
|
11
|
+
: getLightTheme(ctx, t);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
const kThemeDefault: BrandVariants = {
|
|
16
|
+
10: "#04010A",
|
|
17
|
+
20: "#16103B",
|
|
18
|
+
30: "#17176F",
|
|
19
|
+
40: "#0F1D9A",
|
|
20
|
+
50: "#2F2AA1",
|
|
21
|
+
60: "#4338A8",
|
|
22
|
+
70: "#5546AF",
|
|
23
|
+
80: "#6555B6",
|
|
24
|
+
90: "#7563BD",
|
|
25
|
+
100: "#8472C4",
|
|
26
|
+
110: "#9282CB",
|
|
27
|
+
120: "#A191D2",
|
|
28
|
+
130: "#AFA1D9",
|
|
29
|
+
140: "#BDB1E0",
|
|
30
|
+
150: "#CBC1E7",
|
|
31
|
+
160: "#D9D2EE"
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
const kThemeOrange: BrandVariants = {
|
|
35
|
+
10: "#040301",
|
|
36
|
+
20: "#1E170A",
|
|
37
|
+
30: "#312610",
|
|
38
|
+
40: "#403112",
|
|
39
|
+
50: "#503D14",
|
|
40
|
+
60: "#604915",
|
|
41
|
+
70: "#705516",
|
|
42
|
+
80: "#816216",
|
|
43
|
+
90: "#926E16",
|
|
44
|
+
100: "#A37B15",
|
|
45
|
+
110: "#B58914",
|
|
46
|
+
120: "#C79612",
|
|
47
|
+
130: "#DAA40E",
|
|
48
|
+
140: "#EDB208",
|
|
49
|
+
150: "#FFC001",
|
|
50
|
+
160: "#FFD47F"
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
const kThemeSecondary: BrandVariants = {
|
|
54
|
+
10: "#020304",
|
|
55
|
+
20: "#101A1D",
|
|
56
|
+
30: "#162B32",
|
|
57
|
+
40: "#1A3742",
|
|
58
|
+
50: "#1D4552",
|
|
59
|
+
60: "#1F5363",
|
|
60
|
+
70: "#216175",
|
|
61
|
+
80: "#227087",
|
|
62
|
+
90: "#227F9A",
|
|
63
|
+
100: "#208EAD",
|
|
64
|
+
110: "#1E9EC0",
|
|
65
|
+
120: "#1AADD4",
|
|
66
|
+
130: "#12BEE8",
|
|
67
|
+
140: "#02CEFD",
|
|
68
|
+
150: "#6BDAFF",
|
|
69
|
+
160: "#A0E5FF"
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
function getLightTheme(ctx: iThemeContext, t: BrandVariants = kThemeDefault) {
|
|
73
|
+
if (ctx.teams) return teamsLightTheme;
|
|
74
|
+
//return jsonClone(webLightTheme);
|
|
75
|
+
const lightTheme: Theme = {
|
|
76
|
+
...createLightTheme(t),
|
|
77
|
+
};
|
|
78
|
+
return lightTheme;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function getDarkTheme(ctx: iThemeContext, t: BrandVariants = kThemeDefault) {
|
|
82
|
+
if (ctx.teams) return teamsDarkTheme;
|
|
83
|
+
//return jsonClone(webDarkTheme);
|
|
84
|
+
const darkTheme: Theme = {
|
|
85
|
+
...createDarkTheme(t),
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
darkTheme.colorBrandForeground1 = t[110];
|
|
89
|
+
darkTheme.colorBrandForeground2 = t[120];
|
|
90
|
+
return darkTheme;
|
|
91
91
|
}
|