@clickhouse/click-ui 0.0.155 → 0.0.157

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.
@@ -10420,7 +10420,7 @@ const Wrapper$9 = styled.div.withConfig({
10420
10420
  $maxWidth
10421
10421
  }) => $maxWidth ?? "none", ({
10422
10422
  $minWidth
10423
- }) => $minWidth ?? "none", ({
10423
+ }) => $minWidth ?? "auto", ({
10424
10424
  theme: theme2,
10425
10425
  $paddingSize
10426
10426
  }) => theme2.click.container.space[$paddingSize], ({
@@ -16909,11 +16909,16 @@ var throttle_1 = throttle$1;
16909
16909
  const throttle$2 = /* @__PURE__ */ getDefaultExportFromCjs(throttle_1);
16910
16910
  const ResizeSpan = styled.div.withConfig({
16911
16911
  componentId: "sc-1r6e5v3-0"
16912
- })(["top:0;left:calc(100% - 4px);z-index:1;position:absolute;height:", "px;cursor:col-resize;width:4px;overflow:auto;&:hover,&:active,&:hover{background:", ";}&:active{height:100%;position:fixed;}"], ({
16912
+ })(["top:0;left:calc(100% - 4px);z-index:1;position:absolute;height:", "px;cursor:col-resize;width:4px;overflow:auto;&:hover,&:active,&:hover{background:", ";}", ""], ({
16913
16913
  $height
16914
16914
  }) => $height, ({
16915
16915
  theme: theme2
16916
- }) => theme2.click.grid.header.cell.color.stroke.selectDirect);
16916
+ }) => theme2.click.grid.header.cell.color.stroke.selectDirect, ({
16917
+ $isPressed
16918
+ }) => $isPressed && `
16919
+ height: 100%;
16920
+ position: fixed;
16921
+ `);
16917
16922
  const ColumnResizer = ({
16918
16923
  height,
16919
16924
  onColumnResize: onColumnResizeProp,
@@ -16922,14 +16927,20 @@ const ColumnResizer = ({
16922
16927
  }) => {
16923
16928
  const resizeRef = useRef(null);
16924
16929
  const pointerRef = useRef(null);
16930
+ const [isPressed, setIsPressed] = useState(false);
16925
16931
  const onColumnResize = throttle$2(onColumnResizeProp, 1e3);
16926
16932
  const onMouseDown = useCallback((e) => {
16927
16933
  e.preventDefault();
16928
16934
  e.stopPropagation();
16935
+ setIsPressed(true);
16929
16936
  if (e.detail > 1) {
16930
16937
  onColumnResize(columnIndex, 0, "auto");
16931
16938
  }
16932
- }, [columnIndex, onColumnResize]);
16939
+ }, [columnIndex, onColumnResize, setIsPressed]);
16940
+ const onMouseUp = useCallback((e) => {
16941
+ e.stopPropagation();
16942
+ setIsPressed(false);
16943
+ }, [setIsPressed]);
16933
16944
  const onPointerDown = useCallback((e) => {
16934
16945
  e.stopPropagation();
16935
16946
  if (resizeRef.current) {
@@ -16951,17 +16962,18 @@ const ColumnResizer = ({
16951
16962
  const header = resizeRef.current.closest(`[data-header="${columnIndex}"]`);
16952
16963
  if (header) {
16953
16964
  resizeRef.current.setPointerCapture(pointerRef.current.pointerId);
16954
- const width = header.scrollWidth + (e.clientX - pointerRef.current.initialClientX);
16965
+ const width = header.clientWidth + (e.clientX - pointerRef.current.initialClientX);
16955
16966
  setResizeCursorPosition(resizeRef.current, e.clientX, width, columnIndex);
16956
16967
  pointerRef.current.width = Math.max(width, 50);
16957
16968
  }
16958
16969
  }
16959
16970
  }, [columnIndex, setResizeCursorPosition]);
16960
- return /* @__PURE__ */ jsxRuntimeExports.jsx(ResizeSpan, { ref: resizeRef, $height: height, onPointerDown, onPointerUp: (e) => {
16961
- var _a;
16971
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(ResizeSpan, { ref: resizeRef, $height: height, $isPressed: isPressed, onPointerDown, onPointerUp: (e) => {
16972
+ var _a, _b;
16962
16973
  e.preventDefault();
16963
16974
  e.stopPropagation();
16964
- if (resizeRef.current && ((_a = pointerRef.current) == null ? void 0 : _a.pointerId)) {
16975
+ if (resizeRef.current && // 0 is a valid pointerId in Firefox
16976
+ (((_a = pointerRef.current) == null ? void 0 : _a.pointerId) || ((_b = pointerRef.current) == null ? void 0 : _b.pointerId) === 0)) {
16965
16977
  resizeRef.current.releasePointerCapture(pointerRef.current.pointerId);
16966
16978
  const shouldCallResize = e.clientX !== pointerRef.current.initialClientX;
16967
16979
  if (shouldCallResize) {
@@ -16971,7 +16983,7 @@ const ColumnResizer = ({
16971
16983
  resizeRef.current.style.left = "calc(100% - 4px)";
16972
16984
  pointerRef.current = null;
16973
16985
  }
16974
- }, onMouseMove, onMouseDown, onClick: (e) => e.stopPropagation(), onMouseUp: (e) => e.stopPropagation(), "data-resize": true });
16986
+ }, onMouseMove, onMouseDown, onClick: (e) => e.stopPropagation(), onMouseUp, "data-resize": true });
16975
16987
  };
16976
16988
  const HeaderContainer = styled.div.withConfig({
16977
16989
  componentId: "sc-1oadqc8-0"
@@ -31628,7 +31640,7 @@ const ContextMenuTrigger = styled.div.withConfig({
31628
31640
  $showBorder,
31629
31641
  theme: theme2
31630
31642
  }) => $showBorder && `border: 1px solid ${theme2.click.grid.header.cell.color.stroke.default}`);
31631
- const OuterElementType = forwardRef((props, ref) => /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref, "data-testid": "grid-outer-element", ...props }));
31643
+ const OuterElementType = forwardRef((props, ref) => /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref, "data-testid": "grid-outer-element", tabIndex: 0, ...props }));
31632
31644
  const Grid = forwardRef(({
31633
31645
  autoFocus,
31634
31646
  autoHeight = false,
@@ -32756,11 +32768,11 @@ const Pagination = ({
32756
32768
  };
32757
32769
  const onChange = (value) => {
32758
32770
  var _a;
32759
- const valueToNumber = Number(value);
32760
- if (valueToNumber < 1 || ((_a = inputRef.current) == null ? void 0 : _a.disabled) || (typeof totalPages !== "undefined" ? valueToNumber > totalPages : false)) {
32771
+ const sanitizedValue = parseInt(value, 10);
32772
+ if (sanitizedValue < 1 || ((_a = inputRef.current) == null ? void 0 : _a.disabled) || (typeof totalPages !== "undefined" ? sanitizedValue > totalPages : false)) {
32761
32773
  return;
32762
32774
  }
32763
- onChangeProp(valueToNumber);
32775
+ onChangeProp(sanitizedValue);
32764
32776
  };
32765
32777
  const onPageSizeChange = (value) => {
32766
32778
  if (typeof onPageSizeChangeProp === "function") {
@@ -41064,9 +41076,9 @@ const click$3 = {
41064
41076
  },
41065
41077
  danger: {
41066
41078
  background: {
41067
- "default": "#ffdddd",
41068
- hover: "#ff9898",
41069
- active: "lch(78 26.3 22)"
41079
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
41080
+ hover: "rgb(100% 59.6% 59.6% / 0.2)",
41081
+ active: "rgb(100% 72.9% 72.9% / 0.3)"
41070
41082
  },
41071
41083
  text: {
41072
41084
  "default": "#c10000"
@@ -41153,7 +41165,7 @@ const click$3 = {
41153
41165
  },
41154
41166
  danger: {
41155
41167
  background: {
41156
- "default": "#ffdddd",
41168
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
41157
41169
  hover: "#ff9898",
41158
41170
  active: "#ffbaba"
41159
41171
  },
@@ -41163,9 +41175,9 @@ const click$3 = {
41163
41175
  active: "#c10000"
41164
41176
  },
41165
41177
  stroke: {
41166
- "default": "#ffdddd",
41167
- hover: "#ff9898",
41168
- active: "lch(78 26.3 22)"
41178
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
41179
+ hover: "rgb(100% 59.6% 59.6% / 0.2)",
41180
+ active: "rgb(100% 72.9% 72.9% / 0.3)"
41169
41181
  }
41170
41182
  },
41171
41183
  ghost: {
@@ -41187,7 +41199,7 @@ const click$3 = {
41187
41199
  },
41188
41200
  info: {
41189
41201
  background: {
41190
- "default": "#dae6fc",
41202
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
41191
41203
  hover: "#b5cdf9",
41192
41204
  active: "#91b3f6"
41193
41205
  },
@@ -41197,7 +41209,7 @@ const click$3 = {
41197
41209
  active: "#135be6"
41198
41210
  },
41199
41211
  stroke: {
41200
- "default": "#dae6fc",
41212
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
41201
41213
  hover: "#b5cdf9",
41202
41214
  active: "#91b3f6"
41203
41215
  }
@@ -41269,7 +41281,7 @@ const click$3 = {
41269
41281
  stroke: {
41270
41282
  "default": "#e6e7e9",
41271
41283
  hover: "#e6e7e9",
41272
- active: "lch(84 2.28 258)",
41284
+ active: "rgb(81.2% 82.3% 83.8%)",
41273
41285
  disabled: "rgba(0,0,0,0)"
41274
41286
  }
41275
41287
  }
@@ -41351,7 +41363,7 @@ const click$3 = {
41351
41363
  background: {
41352
41364
  "default": "#ffffff",
41353
41365
  hover: "#f6f7fa",
41354
- active: "lch(92.4 1.49 272)",
41366
+ active: "rgb(91.6% 92% 93.1%)",
41355
41367
  disabled: "#dfdfdf"
41356
41368
  },
41357
41369
  title: {
@@ -41445,8 +41457,8 @@ const click$3 = {
41445
41457
  active: "#161517"
41446
41458
  },
41447
41459
  background: {
41448
- "default": "lch(97.2 1.57 272 / 0.9)",
41449
- hover: "lch(91.8 1.07 266)",
41460
+ "default": "rgb(96.5% 96.9% 98% / 0.9)",
41461
+ hover: "rgb(90.4% 90.8% 91.6%)",
41450
41462
  active: "lch(89.3 1.07 266)"
41451
41463
  },
41452
41464
  stroke: {
@@ -41921,12 +41933,12 @@ const click$2 = {
41921
41933
  "default": {
41922
41934
  label: {
41923
41935
  "default": "#ffffff",
41924
- hover: "lch(100 0 0)",
41936
+ hover: "rgb(100% 100% 100%)",
41925
41937
  active: "#ffffff"
41926
41938
  },
41927
41939
  icon: {
41928
41940
  "default": "#ffffff",
41929
- hover: "lch(100 0 0)",
41941
+ hover: "rgb(100% 100% 100%)",
41930
41942
  active: "#ffffff"
41931
41943
  }
41932
41944
  },
@@ -41938,7 +41950,7 @@ const click$2 = {
41938
41950
  },
41939
41951
  icon: {
41940
41952
  "default": "#FAFF69",
41941
- hover: "lch(98.8 31.4 104)",
41953
+ hover: "rgb(99.6% 100% 75%)",
41942
41954
  active: "#FAFF69"
41943
41955
  }
41944
41956
  }
@@ -41948,11 +41960,11 @@ const click$2 = {
41948
41960
  color: {
41949
41961
  background: {
41950
41962
  "default": "#1F1F1C",
41951
- success: "#004206",
41952
- neutral: "#414141",
41953
- danger: "#610000",
41954
- warning: "#4f2b00",
41955
- info: "#09255B"
41963
+ success: "rgb(20% 100% 26.7% / 0.2)",
41964
+ neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
41965
+ danger: "rgb(100% 13.7% 13.7% / 0.2)",
41966
+ warning: "rgb(100% 58% 8.63% / 0.2)",
41967
+ info: "rgb(7.45% 35.7% 90.2% / 0.2)"
41956
41968
  },
41957
41969
  text: {
41958
41970
  "default": "#b3b6bd",
@@ -41964,11 +41976,11 @@ const click$2 = {
41964
41976
  },
41965
41977
  iconBackground: {
41966
41978
  "default": "#1F1F1C",
41967
- success: "#004206",
41968
- neutral: "#414141",
41969
- danger: "#610000",
41970
- warning: "#4f2b00",
41971
- info: "#09255B"
41979
+ success: "rgb(20% 100% 26.7% / 0)",
41980
+ neutral: "rgb(62.7% 62.7% 62.7% / 0)",
41981
+ danger: "rgb(100% 13.7% 13.7% / 0)",
41982
+ warning: "rgb(100% 58% 8.63% / 0)",
41983
+ info: "rgb(7.45% 35.7% 90.2% / 0)"
41972
41984
  },
41973
41985
  iconForeground: {
41974
41986
  "default": "#b3b6bd",
@@ -41998,12 +42010,12 @@ const click$2 = {
41998
42010
  color: {
41999
42011
  background: {
42000
42012
  "default": "#1F1F1C",
42001
- success: "#004206",
42002
- neutral: "#414141",
42003
- danger: "#610000",
42013
+ success: "rgb(20% 100% 26.7% / 0.2)",
42014
+ neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
42015
+ danger: "rgb(100% 13.7% 13.7% / 0.2)",
42004
42016
  disabled: "#414141",
42005
- info: "#09255B",
42006
- warning: "#4f2b00"
42017
+ info: "rgb(7.45% 35.7% 90.2% / 0.2)",
42018
+ warning: "rgb(100% 58% 8.63% / 0.2)"
42007
42019
  },
42008
42020
  text: {
42009
42021
  "default": "#b3b6bd",
@@ -42016,12 +42028,12 @@ const click$2 = {
42016
42028
  },
42017
42029
  stroke: {
42018
42030
  "default": "#323232",
42019
- success: "#004206",
42020
- neutral: "#414141",
42021
- danger: "#610000",
42031
+ success: "rgb(20% 100% 26.7% / 0.1)",
42032
+ neutral: "rgb(62.7% 62.7% 62.7% / 0.1)",
42033
+ danger: "rgb(100% 22.3% 22.3% / 0.2)",
42022
42034
  disabled: "rgb(24.2% 24.2% 24.2%)",
42023
- info: "#09255B",
42024
- warning: "#4f2b00"
42035
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)",
42036
+ warning: "rgb(100% 58% 8.63% / 0.1)"
42025
42037
  }
42026
42038
  }
42027
42039
  },
@@ -42040,8 +42052,8 @@ const click$2 = {
42040
42052
  muted: "#b3b6bd"
42041
42053
  },
42042
42054
  title: {
42043
- "default": "lch(97.5 0 0)",
42044
- muted: "lch(97.5 0 0)"
42055
+ "default": "rgb(97.5% 97.5% 97.5%)",
42056
+ muted: "rgb(97.5% 97.5% 97.5%)"
42045
42057
  }
42046
42058
  }
42047
42059
  },
@@ -42064,7 +42076,7 @@ const click$2 = {
42064
42076
  stroke: {
42065
42077
  "default": "#FAFF69",
42066
42078
  hover: "#FAFF69",
42067
- active: "lch(83.3 60.6 103)",
42079
+ active: "rgb(83% 84.6% 34.9%)",
42068
42080
  disabled: "#414141"
42069
42081
  }
42070
42082
  },
@@ -42090,9 +42102,9 @@ const click$2 = {
42090
42102
  },
42091
42103
  danger: {
42092
42104
  background: {
42093
- "default": "#610000",
42094
- hover: "#910000",
42095
- active: "lch(28.6 65.8 40)",
42105
+ "default": "rgb(100% 13.7% 13.7% / 0.2)",
42106
+ hover: "rgb(100% 13.7% 13.7% / 0.3)",
42107
+ active: "rgb(100% 13.7% 13.7% / 0.45)",
42096
42108
  disabled: "#414141"
42097
42109
  },
42098
42110
  text: {
@@ -42102,9 +42114,9 @@ const click$2 = {
42102
42114
  disabled: "#808080"
42103
42115
  },
42104
42116
  stroke: {
42105
- "default": "#610000",
42106
- hover: "#910000",
42107
- active: "lch(28.6 65.8 40)",
42117
+ "default": "rgb(100% 22.3% 22.3% / 0.1)",
42118
+ hover: "rgb(100% 13.7% 13.7% / 0.05)",
42119
+ active: "rgb(100% 13.7% 13.7% / 0.05)",
42108
42120
  disabled: "#414141"
42109
42121
  }
42110
42122
  },
@@ -42153,12 +42165,12 @@ const click$2 = {
42153
42165
  background: {
42154
42166
  "default": "#FAFF69",
42155
42167
  hover: "rgb(98.6% 100% 58.8%)",
42156
- active: "lch(86.5 62.9 103)"
42168
+ active: "rgb(86.2% 87.9% 36.2%)"
42157
42169
  },
42158
42170
  stroke: {
42159
42171
  "default": "rgba(0,0,0,0)",
42160
42172
  hover: "rgb(98.6% 100% 58.8%)",
42161
- active: "lch(86.5 62.9 103)"
42173
+ active: "rgb(86.2% 87.9% 36.2%)"
42162
42174
  },
42163
42175
  text: {
42164
42176
  "default": "#1F1F1C",
@@ -42176,9 +42188,9 @@ const click$2 = {
42176
42188
  },
42177
42189
  danger: {
42178
42190
  background: {
42179
- "default": "#610000",
42191
+ "default": "rgb(100% 13.7% 13.7% / 0.2)",
42180
42192
  hover: "#ff9898",
42181
- active: "#ffbaba"
42193
+ active: "#c10000"
42182
42194
  },
42183
42195
  text: {
42184
42196
  "default": "#ffbaba",
@@ -42186,9 +42198,9 @@ const click$2 = {
42186
42198
  active: "#ffbaba"
42187
42199
  },
42188
42200
  stroke: {
42189
- "default": "#610000",
42190
- hover: "#910000",
42191
- active: "lch(28.6 65.8 40)"
42201
+ "default": "rgb(100% 13.7% 13.7% / 0.2)",
42202
+ hover: "rgb(100% 13.7% 13.7% / 0.3)",
42203
+ active: "rgb(100% 13.7% 13.7% / 0.45)"
42192
42204
  }
42193
42205
  },
42194
42206
  ghost: {
@@ -42210,7 +42222,7 @@ const click$2 = {
42210
42222
  },
42211
42223
  info: {
42212
42224
  background: {
42213
- "default": "#09255B",
42225
+ "default": "rgb(7.45% 35.7% 90.2% / 0.2)",
42214
42226
  hover: "#0e44ad",
42215
42227
  active: "#135be6"
42216
42228
  },
@@ -42220,7 +42232,7 @@ const click$2 = {
42220
42232
  active: "#b5cdf9"
42221
42233
  },
42222
42234
  stroke: {
42223
- "default": "#09255B",
42235
+ "default": "rgb(7.45% 35.7% 90.2% / 0.2)",
42224
42236
  hover: "#0e44ad",
42225
42237
  active: "#135be6"
42226
42238
  }
@@ -42233,14 +42245,14 @@ const click$2 = {
42233
42245
  main: {
42234
42246
  "default": "#FAFF69",
42235
42247
  hover: "lch(89.7 46.7 104)",
42236
- active: "lch(83.3 60.6 103)",
42237
- disabled: "lch(25.2 0 0)"
42248
+ active: "rgb(83% 84.6% 34.9%)",
42249
+ disabled: "rgb(23.3% 23.3% 23.3%)"
42238
42250
  },
42239
42251
  action: {
42240
- "default": "lch(87.8 63.4 103)",
42241
- hover: "lch(82.5 43 104)",
42242
- active: "lch(73.3 53.3 103)",
42243
- disabled: "lch(22.2 0 0)"
42252
+ "default": "rgb(88.2% 90% 37.1%)",
42253
+ hover: "rgb(81.8% 83.2% 49.2%)",
42254
+ active: "rgb(73% 74.4% 30.7%)",
42255
+ disabled: "rgb(20.5% 20.5% 20.5%)"
42244
42256
  }
42245
42257
  },
42246
42258
  text: {
@@ -42256,17 +42268,17 @@ const click$2 = {
42256
42268
  disabled: "rgba(0,0,0,0)"
42257
42269
  },
42258
42270
  divide: {
42259
- "default": "lch(85.4 61.7 103)",
42260
- hover: "lch(78.5 40.9 104)",
42261
- active: "lch(72.9 53 103)",
42262
- disabled: "lch(23.1 0 0)"
42271
+ "default": "rgb(85.8% 87.5% 36%)",
42272
+ hover: "rgb(77.8% 79.1% 46.8%)",
42273
+ active: "rgb(72.6% 74% 30.5%)",
42274
+ disabled: "rgb(21.3% 21.3% 21.3%)"
42263
42275
  }
42264
42276
  },
42265
42277
  secondary: {
42266
42278
  divide: {
42267
42279
  "default": "lch(31.2 0 0)",
42268
42280
  hover: "lch(34.8 0 0)",
42269
- active: "lch(24.8 2.56 307)",
42281
+ active: "rgb(23.7% 22.9% 24.4%)",
42270
42282
  disabled: "lch(23.4 0 0)"
42271
42283
  },
42272
42284
  background: {
@@ -42278,9 +42290,9 @@ const click$2 = {
42278
42290
  },
42279
42291
  action: {
42280
42292
  "default": "#282828",
42281
- hover: "lch(18.2 0 0)",
42282
- active: "lch(21.9 0 0)",
42283
- disabled: "lch(23.9 0 0)"
42293
+ hover: "rgb(17.8% 17.8% 17.8%)",
42294
+ active: "rgb(20.7% 20.7% 20.7%)",
42295
+ disabled: "rgb(22.1% 22.1% 22.1%)"
42284
42296
  }
42285
42297
  },
42286
42298
  text: {
@@ -42292,7 +42304,7 @@ const click$2 = {
42292
42304
  stroke: {
42293
42305
  "default": "#414141",
42294
42306
  hover: "#414141",
42295
- active: "lch(24.8 2.56 307)",
42307
+ active: "rgb(23.7% 22.9% 24.4%)",
42296
42308
  disabled: "rgba(0,0,0,0)"
42297
42309
  }
42298
42310
  }
@@ -42302,7 +42314,7 @@ const click$2 = {
42302
42314
  background: {
42303
42315
  "default": "rgba(0,0,0,0)",
42304
42316
  hover: "#282828",
42305
- active: "lch(18.2 0 0)",
42317
+ active: "rgb(17.8% 17.8% 17.8%)",
42306
42318
  disabled: "rgba(0,0,0,0)",
42307
42319
  "disabled-active": "lch(0 0 0 / 0)",
42308
42320
  panel: "rgba(0,0,0,0)"
@@ -42335,7 +42347,7 @@ const click$2 = {
42335
42347
  background: {
42336
42348
  "default": "rgba(0,0,0,0)",
42337
42349
  hover: "#282828",
42338
- active: "lch(15.8 0 0)"
42350
+ active: "rgb(15.4% 15.4% 15.4%)"
42339
42351
  },
42340
42352
  stroke: {
42341
42353
  "default": "#323232",
@@ -42356,13 +42368,13 @@ const click$2 = {
42356
42368
  background: {
42357
42369
  "default": "#1F1F1C",
42358
42370
  hover: "#282828",
42359
- active: "lch(15.3 0 0)",
42371
+ active: "rgb(14.9% 14.9% 14.9%)",
42360
42372
  disabled: "#414141"
42361
42373
  },
42362
42374
  title: {
42363
- "default": "lch(97.5 0 0)",
42364
- hover: "lch(97.5 0 0)",
42365
- active: "lch(97.5 0 0)",
42375
+ "default": "rgb(97.5% 97.5% 97.5%)",
42376
+ hover: "rgb(97.5% 97.5% 97.5%)",
42377
+ active: "rgb(97.5% 97.5% 97.5%)",
42366
42378
  disabled: "#808080"
42367
42379
  },
42368
42380
  description: {
@@ -42380,7 +42392,7 @@ const click$2 = {
42380
42392
  stroke: {
42381
42393
  "default": "#323232",
42382
42394
  hover: "#323232",
42383
- active: "lch(19.7 0 0)",
42395
+ active: "rgb(18.6% 18.6% 18.6%)",
42384
42396
  disabled: "#414141"
42385
42397
  }
42386
42398
  }
@@ -42390,13 +42402,13 @@ const click$2 = {
42390
42402
  background: {
42391
42403
  "default": "#1F1F1C",
42392
42404
  hover: "#282828",
42393
- active: "lch(15.3 0 0)",
42405
+ active: "rgb(14.9% 14.9% 14.9%)",
42394
42406
  disabled: "#414141"
42395
42407
  },
42396
42408
  title: {
42397
- "default": "lch(97.5 0 0)",
42398
- hover: "lch(97.5 0 0)",
42399
- active: "lch(97.5 0 0)",
42409
+ "default": "rgb(97.5% 97.5% 97.5%)",
42410
+ hover: "rgb(97.5% 97.5% 97.5%)",
42411
+ active: "rgb(97.5% 97.5% 97.5%)",
42400
42412
  disabled: "#808080"
42401
42413
  },
42402
42414
  description: {
@@ -42423,9 +42435,9 @@ const click$2 = {
42423
42435
  disabled: "#414141"
42424
42436
  },
42425
42437
  title: {
42426
- "default": "lch(97.5 0 0)",
42427
- hover: "lch(97.5 0 0)",
42428
- active: "lch(97.5 0 0)",
42438
+ "default": "rgb(97.5% 97.5% 97.5%)",
42439
+ hover: "rgb(97.5% 97.5% 97.5%)",
42440
+ active: "rgb(97.5% 97.5% 97.5%)",
42429
42441
  disabled: "#808080"
42430
42442
  },
42431
42443
  description: {
@@ -42451,9 +42463,9 @@ const click$2 = {
42451
42463
  disabled: "#414141"
42452
42464
  },
42453
42465
  title: {
42454
- "default": "lch(97.5 0 0)",
42455
- hover: "lch(97.5 0 0)",
42456
- active: "lch(97.5 0 0)",
42466
+ "default": "rgb(97.5% 97.5% 97.5%)",
42467
+ hover: "rgb(97.5% 97.5% 97.5%)",
42468
+ active: "rgb(97.5% 97.5% 97.5%)",
42457
42469
  disabled: "#808080"
42458
42470
  },
42459
42471
  description: {
@@ -42484,9 +42496,9 @@ const click$2 = {
42484
42496
  active: "#FAFF69"
42485
42497
  },
42486
42498
  background: {
42487
- "default": "lch(16.1 0 0 / 0.9)",
42488
- hover: "lch(18.2 0 0 / 0.9)",
42489
- active: "lch(20.2 0 0 / 0.9)"
42499
+ "default": "rgb(15.7% 15.7% 15.7% / 0.9)",
42500
+ hover: "rgb(17.8% 17.8% 17.8% / 0.9)",
42501
+ active: "rgb(19.9% 19.9% 19.9% / 0.9)"
42490
42502
  },
42491
42503
  stroke: {
42492
42504
  "default": "linear-gradient(174deg, #FAFF69 8.31%, #2C2E31 22.92%)",
@@ -42500,8 +42512,8 @@ const click$2 = {
42500
42512
  checkbox: {
42501
42513
  color: {
42502
42514
  background: {
42503
- "default": "lch(18.2 0 0)",
42504
- hover: "lch(18.2 0 0)",
42515
+ "default": "rgb(17.8% 17.8% 17.8%)",
42516
+ hover: "rgb(17.8% 17.8% 17.8%)",
42505
42517
  active: "#FAFF69",
42506
42518
  disabled: "#414141"
42507
42519
  },
@@ -42579,7 +42591,7 @@ const click$2 = {
42579
42591
  monacoTheme: {
42580
42592
  parameter: {
42581
42593
  foreground: "#c0c0c0",
42582
- background: "#414141"
42594
+ background: "rgb(62.7% 62.7% 62.7% / 0.2)"
42583
42595
  }
42584
42596
  }
42585
42597
  },
@@ -42599,11 +42611,11 @@ const click$2 = {
42599
42611
  field: {
42600
42612
  color: {
42601
42613
  background: {
42602
- "default": "lch(18.2 0 0)",
42603
- hover: "lch(20.2 0 0)",
42604
- active: "lch(20.2 0 0)",
42614
+ "default": "rgb(17.8% 17.8% 17.8%)",
42615
+ hover: "rgb(19.9% 19.9% 19.9%)",
42616
+ active: "rgb(19.9% 19.9% 19.9%)",
42605
42617
  disabled: "#414141",
42606
- error: "lch(20.2 0 0)"
42618
+ error: "rgb(19.9% 19.9% 19.9%)"
42607
42619
  },
42608
42620
  text: {
42609
42621
  "default": "#e6e7e9",
@@ -42613,8 +42625,8 @@ const click$2 = {
42613
42625
  error: "#ffbaba"
42614
42626
  },
42615
42627
  stroke: {
42616
- "default": "lch(24.7 0 0)",
42617
- hover: "lch(28.5 0 0)",
42628
+ "default": "rgb(23.6% 23.6% 23.6%)",
42629
+ hover: "rgb(27.4% 27.4% 27.4%)",
42618
42630
  active: "#FAFF69",
42619
42631
  disabled: "#414141",
42620
42632
  error: "#ffbaba"
@@ -42627,11 +42639,11 @@ const click$2 = {
42627
42639
  error: "#ffbaba"
42628
42640
  },
42629
42641
  format: {
42630
- "default": "lch(62.9 0 0)",
42631
- hover: "lch(62.9 0 0)",
42632
- active: "lch(62.9 0 0)",
42642
+ "default": "rgb(60.2% 60.2% 60.2%)",
42643
+ hover: "rgb(60.2% 60.2% 60.2%)",
42644
+ active: "rgb(60.2% 60.2% 60.2%)",
42633
42645
  disabled: "#808080",
42634
- error: "lch(62.9 0 0)"
42646
+ error: "rgb(60.2% 60.2% 60.2%)"
42635
42647
  },
42636
42648
  genericLabel: {
42637
42649
  "default": "#ffffff",
@@ -42657,16 +42669,16 @@ const click$2 = {
42657
42669
  },
42658
42670
  background: {
42659
42671
  "default": "#282828",
42660
- hover: "lch(23.5 0 0)",
42672
+ hover: "rgb(23.1% 23.1% 23.1%)",
42661
42673
  active: "#282828",
42662
42674
  disabled: "#414141"
42663
42675
  },
42664
42676
  format: {
42665
42677
  "default": "lch(62.9 0 0)",
42666
- hover: "lch(62.9 0 0)",
42667
- active: "lch(62.9 0 0)",
42678
+ hover: "rgb(60.2% 60.2% 60.2%)",
42679
+ active: "rgb(60.2% 60.2% 60.2%)",
42668
42680
  disabled: "#808080",
42669
- error: "lch(62.9 0 0)"
42681
+ error: "rgb(60.2% 60.2% 60.2%)"
42670
42682
  },
42671
42683
  stroke: {
42672
42684
  "default": "#323232"
@@ -42751,8 +42763,8 @@ const click$2 = {
42751
42763
  radio: {
42752
42764
  color: {
42753
42765
  background: {
42754
- "default": "lch(18.2 0 0)",
42755
- hover: "lch(18.2 0 0)",
42766
+ "default": "rgb(17.8% 17.8% 17.8%)",
42767
+ hover: "rgb(17.8% 17.8% 17.8%)",
42756
42768
  active: "#FAFF69",
42757
42769
  disabled: "#414141"
42758
42770
  },
@@ -42764,7 +42776,7 @@ const click$2 = {
42764
42776
  },
42765
42777
  indicator: {
42766
42778
  "default": "#1F1F1C",
42767
- hover: "lch(18.2 0 0)",
42779
+ hover: "rgb(17.8% 17.8% 17.8%)",
42768
42780
  active: "#151515",
42769
42781
  disabled: "#808080"
42770
42782
  }
@@ -43009,10 +43021,10 @@ const click$2 = {
43009
43021
  background: {
43010
43022
  "default": "#282828",
43011
43023
  hover: "#282828",
43012
- active: "lch(18.2 0 0)"
43024
+ active: "rgb(17.8% 17.8% 17.8%)"
43013
43025
  },
43014
43026
  title: {
43015
- "default": "lch(97.5 0 0)"
43027
+ "default": "rgb(97.5% 97.5% 97.5%)"
43016
43028
  },
43017
43029
  icon: {
43018
43030
  "default": "#ffffff"
@@ -43032,7 +43044,7 @@ const click$2 = {
43032
43044
  background: {
43033
43045
  "default": "#1F1F1C",
43034
43046
  hover: "lch(15.8 0 0)",
43035
- active: "lch(17.9 0 0)"
43047
+ active: "rgb(17.5% 17.5% 17.5%)"
43036
43048
  },
43037
43049
  stroke: {
43038
43050
  "default": "#323232"
@@ -43111,7 +43123,7 @@ const click$2 = {
43111
43123
  toast: {
43112
43124
  color: {
43113
43125
  title: {
43114
- "default": "lch(97.5 0 0)"
43126
+ "default": "rgb(97.5% 97.5% 97.5%)"
43115
43127
  },
43116
43128
  description: {
43117
43129
  "default": "#b3b6bd"
@@ -43120,7 +43132,7 @@ const click$2 = {
43120
43132
  "default": "#414141"
43121
43133
  },
43122
43134
  icon: {
43123
- "default": "lch(97.5 0 0)",
43135
+ "default": "rgb(97.5% 97.5% 97.5%)",
43124
43136
  success: "#CCFFD0",
43125
43137
  warning: "#ffca8b",
43126
43138
  danger: "#ffbaba"
@@ -43143,7 +43155,7 @@ const click$2 = {
43143
43155
  "default": "#1F1F1C"
43144
43156
  },
43145
43157
  title: {
43146
- "default": "lch(97.5 0 0)"
43158
+ "default": "rgb(97.5% 97.5% 97.5%)"
43147
43159
  },
43148
43160
  description: {
43149
43161
  "default": "#b3b6bd"
@@ -43159,7 +43171,7 @@ const click$2 = {
43159
43171
  "default": "#282828"
43160
43172
  },
43161
43173
  title: {
43162
- "default": "lch(97.5 0 0)"
43174
+ "default": "rgb(97.5% 97.5% 97.5%)"
43163
43175
  },
43164
43176
  description: {
43165
43177
  "default": "#b3b6bd"
@@ -43253,10 +43265,10 @@ const click$2 = {
43253
43265
  "default": "#FAFF69"
43254
43266
  },
43255
43267
  shadow: {
43256
- "default": "lch(6.77 0 0 / 0.6)"
43268
+ "default": "rgb(8.24% 8.24% 8.24% / 0.6)"
43257
43269
  },
43258
43270
  title: {
43259
- "default": "lch(97.5 0 0)",
43271
+ "default": "rgb(97.5% 97.5% 97.5%)",
43260
43272
  muted: "#b3b6bd"
43261
43273
  }
43262
43274
  }
@@ -43264,23 +43276,23 @@ const click$2 = {
43264
43276
  feedback: {
43265
43277
  color: {
43266
43278
  info: {
43267
- background: "#09255B",
43279
+ background: "rgb(7.45% 35.7% 90.2% / 0.2)",
43268
43280
  foreground: "#b5cdf9"
43269
43281
  },
43270
43282
  success: {
43271
- background: "#004206",
43283
+ background: "rgb(20% 100% 26.7% / 0.2)",
43272
43284
  foreground: "#CCFFD0"
43273
43285
  },
43274
43286
  warning: {
43275
- background: "#4f2b00",
43287
+ background: "rgb(100% 58% 8.63% / 0.2)",
43276
43288
  foreground: "#ffca8b"
43277
43289
  },
43278
43290
  danger: {
43279
- background: "#610000",
43291
+ background: "rgb(100% 13.7% 13.7% / 0.2)",
43280
43292
  foreground: "#ffbaba"
43281
43293
  },
43282
43294
  neutral: {
43283
- background: "#414141",
43295
+ background: "rgb(62.7% 62.7% 62.7% / 0.2)",
43284
43296
  foreground: "#c0c0c0",
43285
43297
  stroke: "#323232"
43286
43298
  }
@@ -43422,11 +43434,11 @@ const click$1 = {
43422
43434
  color: {
43423
43435
  background: {
43424
43436
  "default": "#ffffff",
43425
- success: "#E5FFE8",
43426
- neutral: "#e6e7e9",
43427
- danger: "#ffdddd",
43428
- warning: "#ffedd8",
43429
- info: "#dae6fc"
43437
+ success: "rgb(20% 100% 26.7% / 0.1)",
43438
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43439
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
43440
+ warning: "rgb(100% 58% 8.63% / 0.1)",
43441
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)"
43430
43442
  },
43431
43443
  text: {
43432
43444
  "default": "#696e79",
@@ -43438,11 +43450,11 @@ const click$1 = {
43438
43450
  },
43439
43451
  iconBackground: {
43440
43452
  "default": "#ffffff",
43441
- success: "#E5FFE8",
43442
- neutral: "#e6e7e9",
43443
- danger: "#ffdddd",
43444
- warning: "#ffedd8",
43445
- info: "#dae6fc"
43453
+ success: "rgb(20% 100% 26.7% / 0)",
43454
+ neutral: "rgb(41.2% 43.1% 47.5% / 0)",
43455
+ danger: "rgb(100% 13.7% 13.7% / 0)",
43456
+ warning: "rgb(100% 58% 8.63% / 0)",
43457
+ info: "rgb(7.45% 35.7% 90.2% / 0)"
43446
43458
  },
43447
43459
  iconForeground: {
43448
43460
  "default": "#696e79",
@@ -43471,13 +43483,13 @@ const click$1 = {
43471
43483
  badge: {
43472
43484
  color: {
43473
43485
  background: {
43474
- "default": "#ffffff",
43475
- success: "#E5FFE8",
43476
- neutral: "#e6e7e9",
43477
- danger: "#ffdddd",
43486
+ "default": "#f6f7fa",
43487
+ success: "rgb(20% 100% 26.7% / 0.1)",
43488
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43489
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
43478
43490
  disabled: "#dfdfdf",
43479
- info: "#dae6fc",
43480
- warning: "#ffedd8"
43491
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)",
43492
+ warning: "rgb(100% 58% 8.63% / 0.1)"
43481
43493
  },
43482
43494
  text: {
43483
43495
  "default": "#696e79",
@@ -43490,12 +43502,12 @@ const click$1 = {
43490
43502
  },
43491
43503
  stroke: {
43492
43504
  "default": "#e6e7e9",
43493
- success: "#E5FFE8",
43494
- neutral: "#e6e7e9",
43495
- danger: "#ffdddd",
43496
- disabled: "lch(84.4 0 0)",
43497
- info: "#dae6fc",
43498
- warning: "#ffedd8"
43505
+ success: "rgb(20% 100% 26.7% / 0.05)",
43506
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43507
+ danger: "rgb(100% 13.7% 13.7% / 0.05)",
43508
+ disabled: "rgb(83.1% 83.1% 83.1%)",
43509
+ info: "rgb(7.45% 35.7% 90.2% / 0.05)",
43510
+ warning: "rgb(100% 58% 8.63% / 0.05)"
43499
43511
  }
43500
43512
  }
43501
43513
  },
@@ -43564,9 +43576,9 @@ const click$1 = {
43564
43576
  },
43565
43577
  danger: {
43566
43578
  background: {
43567
- "default": "#ffdddd",
43568
- hover: "#ffbaba",
43569
- active: "lch(70.3 41.1 23.9)",
43579
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
43580
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
43581
+ active: "rgb(100% 13.7% 13.7% / 0.3)",
43570
43582
  disabled: "#dfdfdf"
43571
43583
  },
43572
43584
  text: {
@@ -43576,9 +43588,9 @@ const click$1 = {
43576
43588
  disabled: "#a0a0a0"
43577
43589
  },
43578
43590
  stroke: {
43579
- "default": "#ffdddd",
43580
- hover: "#ffbaba",
43581
- active: "lch(70.3 41.1 23.9)",
43591
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
43592
+ hover: "rgb(100% 13.7% 13.7% / 0.05)",
43593
+ active: "rgb(100% 13.7% 13.7% / 0.05)",
43582
43594
  disabled: "#dfdfdf"
43583
43595
  }
43584
43596
  },
@@ -43650,9 +43662,9 @@ const click$1 = {
43650
43662
  },
43651
43663
  danger: {
43652
43664
  background: {
43653
- "default": "#ffdddd",
43654
- hover: "#ffbaba",
43655
- active: "lch(70.3 41.1 23.9)"
43665
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
43666
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
43667
+ active: "rgb(100% 13.7% 13.7% / 0.3)"
43656
43668
  },
43657
43669
  text: {
43658
43670
  "default": "#c10000",
@@ -43660,9 +43672,9 @@ const click$1 = {
43660
43672
  active: "#c10000"
43661
43673
  },
43662
43674
  stroke: {
43663
- "default": "#ffdddd",
43664
- hover: "#ffbaba",
43665
- active: "lch(70.3 41.1 23.9)"
43675
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
43676
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
43677
+ active: "rgb(100% 13.7% 13.7% / 0.3)"
43666
43678
  }
43667
43679
  },
43668
43680
  ghost: {
@@ -43684,7 +43696,7 @@ const click$1 = {
43684
43696
  },
43685
43697
  info: {
43686
43698
  background: {
43687
- "default": "#dae6fc",
43699
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
43688
43700
  hover: "#b5cdf9",
43689
43701
  active: "#91b3f6"
43690
43702
  },
@@ -43694,7 +43706,7 @@ const click$1 = {
43694
43706
  active: "#135be6"
43695
43707
  },
43696
43708
  stroke: {
43697
- "default": "#dae6fc",
43709
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
43698
43710
  hover: "#b5cdf9",
43699
43711
  active: "#91b3f6"
43700
43712
  }
@@ -43708,13 +43720,13 @@ const click$1 = {
43708
43720
  "default": "#302e32",
43709
43721
  hover: "lch(27 3.82 267)",
43710
43722
  active: "lch(5.68 1.13 305)",
43711
- disabled: "lch(81.3 0 0)"
43723
+ disabled: "rgb(80% 80% 80%)"
43712
43724
  },
43713
43725
  action: {
43714
- "default": "lch(6.24 1.29 305)",
43726
+ "default": "rgb(7.76% 7.41% 8.12%)",
43715
43727
  hover: "lch(25.6 3.63 267)",
43716
43728
  active: "lch(3.47 0.72 305)",
43717
- disabled: "lch(77.2 0 0)"
43729
+ disabled: "lch(77.9 0 0)"
43718
43730
  }
43719
43731
  },
43720
43732
  text: {
@@ -43754,7 +43766,7 @@ const click$1 = {
43754
43766
  "default": "#f6f7fa",
43755
43767
  hover: "lch(94.8 1.53 272)",
43756
43768
  active: "lch(92.9 1.5 272)",
43757
- disabled: "lch(77.2 0 0)"
43769
+ disabled: "lch(77.9 0 0)"
43758
43770
  }
43759
43771
  },
43760
43772
  text: {
@@ -43766,7 +43778,7 @@ const click$1 = {
43766
43778
  stroke: {
43767
43779
  "default": "#e6e7e9",
43768
43780
  hover: "#e6e7e9",
43769
- active: "lch(84 2.28 258)",
43781
+ active: "rgb(81.2% 82.3% 83.8%)",
43770
43782
  disabled: "rgba(0,0,0,0)"
43771
43783
  }
43772
43784
  }
@@ -43864,7 +43876,7 @@ const click$1 = {
43864
43876
  background: {
43865
43877
  "default": "#ffffff",
43866
43878
  hover: "#f6f7fa",
43867
- active: "lch(95 0 0)",
43879
+ active: "rgb(95% 95% 95%)",
43868
43880
  disabled: "#dfdfdf"
43869
43881
  },
43870
43882
  title: {
@@ -43958,8 +43970,8 @@ const click$1 = {
43958
43970
  active: "#161517"
43959
43971
  },
43960
43972
  background: {
43961
- "default": "lch(97.2 1.57 272 / 0.9)",
43962
- hover: "lch(91.8 1.07 266)",
43973
+ "default": "rgb(96.5% 96.9% 98% / 0.9)",
43974
+ hover: "rgb(90.4% 90.8% 91.6%)",
43963
43975
  active: "lch(89.8 1.08 266)"
43964
43976
  },
43965
43977
  stroke: {
@@ -44047,7 +44059,7 @@ const click$1 = {
44047
44059
  monacoTheme: {
44048
44060
  parameter: {
44049
44061
  foreground: "#53575f",
44050
- background: "#e6e7e9"
44062
+ background: "rgb(41.2% 43.1% 47.5% / 0.1)"
44051
44063
  }
44052
44064
  }
44053
44065
  },
@@ -44067,8 +44079,8 @@ const click$1 = {
44067
44079
  field: {
44068
44080
  color: {
44069
44081
  background: {
44070
- "default": "lch(97.3 1.53 272)",
44071
- hover: "lch(97.3 1.53 272)",
44082
+ "default": "rgb(96.6% 96.9% 98.1%)",
44083
+ hover: "rgb(96.6% 96.9% 98.1%)",
44072
44084
  active: "#ffffff",
44073
44085
  disabled: "#dfdfdf",
44074
44086
  error: "#ffffff"
@@ -44081,8 +44093,8 @@ const click$1 = {
44081
44093
  error: "#c10000"
44082
44094
  },
44083
44095
  stroke: {
44084
- "default": "lch(92 1.05 266)",
44085
- hover: "lch(83.8 2.3 258)",
44096
+ "default": "rgb(90.7% 91.1% 91.8%)",
44097
+ hover: "rgb(81% 82.1% 83.6%)",
44086
44098
  active: "#161517",
44087
44099
  disabled: "#dfdfdf",
44088
44100
  error: "#c10000"
@@ -44125,7 +44137,7 @@ const click$1 = {
44125
44137
  },
44126
44138
  background: {
44127
44139
  "default": "#ffffff",
44128
- hover: "lch(97.5 1.43 272)",
44140
+ hover: "rgb(96.8% 97.1% 98.2%)",
44129
44141
  active: "#ffffff",
44130
44142
  disabled: "#ffffff"
44131
44143
  },
@@ -44479,7 +44491,7 @@ const click$1 = {
44479
44491
  background: {
44480
44492
  "default": "#f6f7fa",
44481
44493
  hover: "#f6f7fa",
44482
- active: "lch(90.3 11.8 266)"
44494
+ active: "rgb(85% 89.5% 97.8%)"
44483
44495
  },
44484
44496
  title: {
44485
44497
  "default": "#161517"
@@ -44502,7 +44514,7 @@ const click$1 = {
44502
44514
  background: {
44503
44515
  "default": "#ffffff",
44504
44516
  hover: "lch(90.9 12.2 266 / 0.2)",
44505
- active: "lch(91.1 11.9 266 / 0.2)"
44517
+ active: "rgb(85.9% 90.4% 98.9% / 0.2)"
44506
44518
  },
44507
44519
  stroke: {
44508
44520
  "default": "#e6e7e9"
@@ -44731,23 +44743,23 @@ const click$1 = {
44731
44743
  feedback: {
44732
44744
  color: {
44733
44745
  info: {
44734
- background: "#dae6fc",
44746
+ background: "rgb(7.45% 35.7% 90.2% / 0.1)",
44735
44747
  foreground: "#135be6"
44736
44748
  },
44737
44749
  success: {
44738
- background: "#E5FFE8",
44750
+ background: "rgb(20% 100% 26.7% / 0.1)",
44739
44751
  foreground: "#00990D"
44740
44752
  },
44741
44753
  warning: {
44742
- background: "#ffedd8",
44754
+ background: "rgb(100% 58% 8.63% / 0.1)",
44743
44755
  foreground: "#9e5600"
44744
44756
  },
44745
44757
  danger: {
44746
- background: "#ffdddd",
44758
+ background: "rgb(100% 13.7% 13.7% / 0.1)",
44747
44759
  foreground: "#c10000"
44748
44760
  },
44749
44761
  neutral: {
44750
- background: "#e6e7e9",
44762
+ background: "rgb(41.2% 43.1% 47.5% / 0.1)",
44751
44763
  foreground: "#53575f",
44752
44764
  stroke: "#e6e7e9"
44753
44765
  }
@@ -44985,11 +44997,11 @@ const click = {
44985
44997
  color: {
44986
44998
  background: {
44987
44999
  "default": "#ffffff",
44988
- success: "#E5FFE8",
44989
- neutral: "#e6e7e9",
44990
- danger: "#ffdddd",
44991
- warning: "#ffedd8",
44992
- info: "#dae6fc"
45000
+ success: "rgb(20% 100% 26.7% / 0.1)",
45001
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45002
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
45003
+ warning: "rgb(100% 58% 8.63% / 0.1)",
45004
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)"
44993
45005
  },
44994
45006
  text: {
44995
45007
  "default": "#696e79",
@@ -45001,11 +45013,11 @@ const click = {
45001
45013
  },
45002
45014
  iconBackground: {
45003
45015
  "default": "#ffffff",
45004
- success: "#E5FFE8",
45005
- neutral: "#e6e7e9",
45006
- danger: "#ffdddd",
45007
- warning: "#ffedd8",
45008
- info: "#dae6fc"
45016
+ success: "rgb(20% 100% 26.7% / 0)",
45017
+ neutral: "rgb(41.2% 43.1% 47.5% / 0)",
45018
+ danger: "rgb(100% 13.7% 13.7% / 0)",
45019
+ warning: "rgb(100% 58% 8.63% / 0)",
45020
+ info: "rgb(7.45% 35.7% 90.2% / 0)"
45009
45021
  },
45010
45022
  iconForeground: {
45011
45023
  "default": "#696e79",
@@ -45098,13 +45110,13 @@ const click = {
45098
45110
  },
45099
45111
  color: {
45100
45112
  background: {
45101
- "default": "#ffffff",
45102
- success: "#E5FFE8",
45103
- neutral: "#e6e7e9",
45104
- danger: "#ffdddd",
45113
+ "default": "#f6f7fa",
45114
+ success: "rgb(20% 100% 26.7% / 0.1)",
45115
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45116
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
45105
45117
  disabled: "#dfdfdf",
45106
- info: "#dae6fc",
45107
- warning: "#ffedd8"
45118
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)",
45119
+ warning: "rgb(100% 58% 8.63% / 0.1)"
45108
45120
  },
45109
45121
  text: {
45110
45122
  "default": "#696e79",
@@ -45117,12 +45129,12 @@ const click = {
45117
45129
  },
45118
45130
  stroke: {
45119
45131
  "default": "#e6e7e9",
45120
- success: "#E5FFE8",
45121
- neutral: "#e6e7e9",
45122
- danger: "#ffdddd",
45123
- disabled: "lch(84.4 0 0)",
45124
- info: "#dae6fc",
45125
- warning: "#ffedd8"
45132
+ success: "rgb(20% 100% 26.7% / 0.05)",
45133
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45134
+ danger: "rgb(100% 13.7% 13.7% / 0.05)",
45135
+ disabled: "rgb(83.1% 83.1% 83.1%)",
45136
+ info: "rgb(7.45% 35.7% 90.2% / 0.05)",
45137
+ warning: "rgb(100% 58% 8.63% / 0.05)"
45126
45138
  }
45127
45139
  }
45128
45140
  },
@@ -45257,9 +45269,9 @@ const click = {
45257
45269
  },
45258
45270
  danger: {
45259
45271
  background: {
45260
- "default": "#ffdddd",
45261
- hover: "#ffbaba",
45262
- active: "lch(70.3 41.1 23.9)",
45272
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
45273
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
45274
+ active: "rgb(100% 13.7% 13.7% / 0.3)",
45263
45275
  disabled: "#dfdfdf"
45264
45276
  },
45265
45277
  text: {
@@ -45269,9 +45281,9 @@ const click = {
45269
45281
  disabled: "#a0a0a0"
45270
45282
  },
45271
45283
  stroke: {
45272
- "default": "#ffdddd",
45273
- hover: "#ffbaba",
45274
- active: "lch(70.3 41.1 23.9)",
45284
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
45285
+ hover: "rgb(100% 13.7% 13.7% / 0.05)",
45286
+ active: "rgb(100% 13.7% 13.7% / 0.05)",
45275
45287
  disabled: "#dfdfdf"
45276
45288
  }
45277
45289
  },
@@ -45369,9 +45381,9 @@ const click = {
45369
45381
  },
45370
45382
  danger: {
45371
45383
  background: {
45372
- "default": "#ffdddd",
45373
- hover: "#ffbaba",
45374
- active: "lch(70.3 41.1 23.9)"
45384
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
45385
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
45386
+ active: "rgb(100% 13.7% 13.7% / 0.3)"
45375
45387
  },
45376
45388
  text: {
45377
45389
  "default": "#c10000",
@@ -45379,9 +45391,9 @@ const click = {
45379
45391
  active: "#c10000"
45380
45392
  },
45381
45393
  stroke: {
45382
- "default": "#ffdddd",
45383
- hover: "#ffbaba",
45384
- active: "lch(70.3 41.1 23.9)"
45394
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
45395
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
45396
+ active: "rgb(100% 13.7% 13.7% / 0.3)"
45385
45397
  }
45386
45398
  },
45387
45399
  ghost: {
@@ -45403,7 +45415,7 @@ const click = {
45403
45415
  },
45404
45416
  info: {
45405
45417
  background: {
45406
- "default": "#dae6fc",
45418
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
45407
45419
  hover: "#b5cdf9",
45408
45420
  active: "#91b3f6"
45409
45421
  },
@@ -45413,7 +45425,7 @@ const click = {
45413
45425
  active: "#135be6"
45414
45426
  },
45415
45427
  stroke: {
45416
- "default": "#dae6fc",
45428
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
45417
45429
  hover: "#b5cdf9",
45418
45430
  active: "#91b3f6"
45419
45431
  }
@@ -45454,13 +45466,13 @@ const click = {
45454
45466
  "default": "#302e32",
45455
45467
  hover: "lch(27 3.82 267)",
45456
45468
  active: "lch(5.68 1.13 305)",
45457
- disabled: "lch(81.3 0 0)"
45469
+ disabled: "rgb(80% 80% 80%)"
45458
45470
  },
45459
45471
  action: {
45460
- "default": "lch(6.24 1.29 305)",
45472
+ "default": "rgb(7.76% 7.41% 8.12%)",
45461
45473
  hover: "lch(25.6 3.63 267)",
45462
45474
  active: "lch(3.47 0.72 305)",
45463
- disabled: "lch(77.2 0 0)"
45475
+ disabled: "lch(77.9 0 0)"
45464
45476
  }
45465
45477
  },
45466
45478
  text: {
@@ -45500,7 +45512,7 @@ const click = {
45500
45512
  "default": "#f6f7fa",
45501
45513
  hover: "lch(94.8 1.53 272)",
45502
45514
  active: "lch(92.9 1.5 272)",
45503
- disabled: "lch(77.2 0 0)"
45515
+ disabled: "lch(77.9 0 0)"
45504
45516
  }
45505
45517
  },
45506
45518
  text: {
@@ -45512,7 +45524,7 @@ const click = {
45512
45524
  stroke: {
45513
45525
  "default": "#e6e7e9",
45514
45526
  hover: "#e6e7e9",
45515
- active: "lch(84 2.28 258)",
45527
+ active: "rgb(81.2% 82.3% 83.8%)",
45516
45528
  disabled: "rgba(0,0,0,0)"
45517
45529
  }
45518
45530
  }
@@ -45740,7 +45752,7 @@ const click = {
45740
45752
  background: {
45741
45753
  "default": "#ffffff",
45742
45754
  hover: "#f6f7fa",
45743
- active: "lch(95 0 0)",
45755
+ active: "rgb(95% 95% 95%)",
45744
45756
  disabled: "#dfdfdf"
45745
45757
  },
45746
45758
  title: {
@@ -45880,8 +45892,8 @@ const click = {
45880
45892
  active: "#161517"
45881
45893
  },
45882
45894
  background: {
45883
- "default": "lch(97.2 1.57 272 / 0.9)",
45884
- hover: "lch(91.8 1.07 266)",
45895
+ "default": "rgb(96.5% 96.9% 98% / 0.9)",
45896
+ hover: "rgb(90.4% 90.8% 91.6%)",
45885
45897
  active: "lch(89.8 1.08 266)"
45886
45898
  },
45887
45899
  stroke: {
@@ -46012,7 +46024,7 @@ const click = {
46012
46024
  monacoTheme: {
46013
46025
  parameter: {
46014
46026
  foreground: "#53575f",
46015
- background: "#e6e7e9"
46027
+ background: "rgb(41.2% 43.1% 47.5% / 0.1)"
46016
46028
  }
46017
46029
  }
46018
46030
  },
@@ -46127,8 +46139,8 @@ const click = {
46127
46139
  },
46128
46140
  color: {
46129
46141
  background: {
46130
- "default": "lch(97.3 1.53 272)",
46131
- hover: "lch(97.3 1.53 272)",
46142
+ "default": "rgb(96.6% 96.9% 98.1%)",
46143
+ hover: "rgb(96.6% 96.9% 98.1%)",
46132
46144
  active: "#ffffff",
46133
46145
  disabled: "#dfdfdf",
46134
46146
  error: "#ffffff"
@@ -46141,8 +46153,8 @@ const click = {
46141
46153
  error: "#c10000"
46142
46154
  },
46143
46155
  stroke: {
46144
- "default": "lch(92 1.05 266)",
46145
- hover: "lch(83.8 2.3 258)",
46156
+ "default": "rgb(90.7% 91.1% 91.8%)",
46157
+ hover: "rgb(81% 82.1% 83.6%)",
46146
46158
  active: "#161517",
46147
46159
  disabled: "#dfdfdf",
46148
46160
  error: "#c10000"
@@ -46223,7 +46235,7 @@ const click = {
46223
46235
  },
46224
46236
  background: {
46225
46237
  "default": "#ffffff",
46226
- hover: "lch(97.5 1.43 272)",
46238
+ hover: "rgb(96.8% 97.1% 98.2%)",
46227
46239
  active: "#ffffff",
46228
46240
  disabled: "#ffffff"
46229
46241
  },
@@ -47000,7 +47012,7 @@ const click = {
47000
47012
  background: {
47001
47013
  "default": "#f6f7fa",
47002
47014
  hover: "#f6f7fa",
47003
- active: "lch(90.3 11.8 266)"
47015
+ active: "rgb(85% 89.5% 97.8%)"
47004
47016
  },
47005
47017
  title: {
47006
47018
  "default": "#161517"
@@ -47058,7 +47070,7 @@ const click = {
47058
47070
  background: {
47059
47071
  "default": "#ffffff",
47060
47072
  hover: "lch(90.9 12.2 266 / 0.2)",
47061
- active: "lch(91.1 11.9 266 / 0.2)"
47073
+ active: "rgb(85.9% 90.4% 98.9% / 0.2)"
47062
47074
  },
47063
47075
  stroke: {
47064
47076
  "default": "#e6e7e9"
@@ -47546,23 +47558,23 @@ const click = {
47546
47558
  feedback: {
47547
47559
  color: {
47548
47560
  info: {
47549
- background: "#dae6fc",
47561
+ background: "rgb(7.45% 35.7% 90.2% / 0.1)",
47550
47562
  foreground: "#135be6"
47551
47563
  },
47552
47564
  success: {
47553
- background: "#E5FFE8",
47565
+ background: "rgb(20% 100% 26.7% / 0.1)",
47554
47566
  foreground: "#00990D"
47555
47567
  },
47556
47568
  warning: {
47557
- background: "#ffedd8",
47569
+ background: "rgb(100% 58% 8.63% / 0.1)",
47558
47570
  foreground: "#9e5600"
47559
47571
  },
47560
47572
  danger: {
47561
- background: "#ffdddd",
47573
+ background: "rgb(100% 13.7% 13.7% / 0.1)",
47562
47574
  foreground: "#c10000"
47563
47575
  },
47564
47576
  neutral: {
47565
- background: "#e6e7e9",
47577
+ background: "rgb(41.2% 43.1% 47.5% / 0.1)",
47566
47578
  foreground: "#53575f",
47567
47579
  stroke: "#e6e7e9"
47568
47580
  }