@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.
@@ -10437,7 +10437,7 @@ var __publicField = (obj, key, value) => {
10437
10437
  $maxWidth
10438
10438
  }) => $maxWidth ?? "none", ({
10439
10439
  $minWidth
10440
- }) => $minWidth ?? "none", ({
10440
+ }) => $minWidth ?? "auto", ({
10441
10441
  theme: theme2,
10442
10442
  $paddingSize
10443
10443
  }) => theme2.click.container.space[$paddingSize], ({
@@ -16926,11 +16926,16 @@ var __publicField = (obj, key, value) => {
16926
16926
  const throttle$2 = /* @__PURE__ */ getDefaultExportFromCjs(throttle_1);
16927
16927
  const ResizeSpan = styled.div.withConfig({
16928
16928
  componentId: "sc-1r6e5v3-0"
16929
- })(["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;}"], ({
16929
+ })(["top:0;left:calc(100% - 4px);z-index:1;position:absolute;height:", "px;cursor:col-resize;width:4px;overflow:auto;&:hover,&:active,&:hover{background:", ";}", ""], ({
16930
16930
  $height
16931
16931
  }) => $height, ({
16932
16932
  theme: theme2
16933
- }) => theme2.click.grid.header.cell.color.stroke.selectDirect);
16933
+ }) => theme2.click.grid.header.cell.color.stroke.selectDirect, ({
16934
+ $isPressed
16935
+ }) => $isPressed && `
16936
+ height: 100%;
16937
+ position: fixed;
16938
+ `);
16934
16939
  const ColumnResizer = ({
16935
16940
  height,
16936
16941
  onColumnResize: onColumnResizeProp,
@@ -16939,14 +16944,20 @@ var __publicField = (obj, key, value) => {
16939
16944
  }) => {
16940
16945
  const resizeRef = React.useRef(null);
16941
16946
  const pointerRef = React.useRef(null);
16947
+ const [isPressed, setIsPressed] = React.useState(false);
16942
16948
  const onColumnResize = throttle$2(onColumnResizeProp, 1e3);
16943
16949
  const onMouseDown = React.useCallback((e) => {
16944
16950
  e.preventDefault();
16945
16951
  e.stopPropagation();
16952
+ setIsPressed(true);
16946
16953
  if (e.detail > 1) {
16947
16954
  onColumnResize(columnIndex, 0, "auto");
16948
16955
  }
16949
- }, [columnIndex, onColumnResize]);
16956
+ }, [columnIndex, onColumnResize, setIsPressed]);
16957
+ const onMouseUp = React.useCallback((e) => {
16958
+ e.stopPropagation();
16959
+ setIsPressed(false);
16960
+ }, [setIsPressed]);
16950
16961
  const onPointerDown = React.useCallback((e) => {
16951
16962
  e.stopPropagation();
16952
16963
  if (resizeRef.current) {
@@ -16968,17 +16979,18 @@ var __publicField = (obj, key, value) => {
16968
16979
  const header = resizeRef.current.closest(`[data-header="${columnIndex}"]`);
16969
16980
  if (header) {
16970
16981
  resizeRef.current.setPointerCapture(pointerRef.current.pointerId);
16971
- const width = header.scrollWidth + (e.clientX - pointerRef.current.initialClientX);
16982
+ const width = header.clientWidth + (e.clientX - pointerRef.current.initialClientX);
16972
16983
  setResizeCursorPosition(resizeRef.current, e.clientX, width, columnIndex);
16973
16984
  pointerRef.current.width = Math.max(width, 50);
16974
16985
  }
16975
16986
  }
16976
16987
  }, [columnIndex, setResizeCursorPosition]);
16977
- return /* @__PURE__ */ jsxRuntimeExports.jsx(ResizeSpan, { ref: resizeRef, $height: height, onPointerDown, onPointerUp: (e) => {
16978
- var _a;
16988
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(ResizeSpan, { ref: resizeRef, $height: height, $isPressed: isPressed, onPointerDown, onPointerUp: (e) => {
16989
+ var _a, _b;
16979
16990
  e.preventDefault();
16980
16991
  e.stopPropagation();
16981
- if (resizeRef.current && ((_a = pointerRef.current) == null ? void 0 : _a.pointerId)) {
16992
+ if (resizeRef.current && // 0 is a valid pointerId in Firefox
16993
+ (((_a = pointerRef.current) == null ? void 0 : _a.pointerId) || ((_b = pointerRef.current) == null ? void 0 : _b.pointerId) === 0)) {
16982
16994
  resizeRef.current.releasePointerCapture(pointerRef.current.pointerId);
16983
16995
  const shouldCallResize = e.clientX !== pointerRef.current.initialClientX;
16984
16996
  if (shouldCallResize) {
@@ -16988,7 +17000,7 @@ var __publicField = (obj, key, value) => {
16988
17000
  resizeRef.current.style.left = "calc(100% - 4px)";
16989
17001
  pointerRef.current = null;
16990
17002
  }
16991
- }, onMouseMove, onMouseDown, onClick: (e) => e.stopPropagation(), onMouseUp: (e) => e.stopPropagation(), "data-resize": true });
17003
+ }, onMouseMove, onMouseDown, onClick: (e) => e.stopPropagation(), onMouseUp, "data-resize": true });
16992
17004
  };
16993
17005
  const HeaderContainer = styled.div.withConfig({
16994
17006
  componentId: "sc-1oadqc8-0"
@@ -31645,7 +31657,7 @@ var __publicField = (obj, key, value) => {
31645
31657
  $showBorder,
31646
31658
  theme: theme2
31647
31659
  }) => $showBorder && `border: 1px solid ${theme2.click.grid.header.cell.color.stroke.default}`);
31648
- const OuterElementType = React.forwardRef((props, ref) => /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref, "data-testid": "grid-outer-element", ...props }));
31660
+ const OuterElementType = React.forwardRef((props, ref) => /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref, "data-testid": "grid-outer-element", tabIndex: 0, ...props }));
31649
31661
  const Grid = React.forwardRef(({
31650
31662
  autoFocus,
31651
31663
  autoHeight = false,
@@ -32773,11 +32785,11 @@ var __publicField = (obj, key, value) => {
32773
32785
  };
32774
32786
  const onChange = (value) => {
32775
32787
  var _a;
32776
- const valueToNumber = Number(value);
32777
- if (valueToNumber < 1 || ((_a = inputRef.current) == null ? void 0 : _a.disabled) || (typeof totalPages !== "undefined" ? valueToNumber > totalPages : false)) {
32788
+ const sanitizedValue = parseInt(value, 10);
32789
+ if (sanitizedValue < 1 || ((_a = inputRef.current) == null ? void 0 : _a.disabled) || (typeof totalPages !== "undefined" ? sanitizedValue > totalPages : false)) {
32778
32790
  return;
32779
32791
  }
32780
- onChangeProp(valueToNumber);
32792
+ onChangeProp(sanitizedValue);
32781
32793
  };
32782
32794
  const onPageSizeChange = (value) => {
32783
32795
  if (typeof onPageSizeChangeProp === "function") {
@@ -41081,9 +41093,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41081
41093
  },
41082
41094
  danger: {
41083
41095
  background: {
41084
- "default": "#ffdddd",
41085
- hover: "#ff9898",
41086
- active: "lch(78 26.3 22)"
41096
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
41097
+ hover: "rgb(100% 59.6% 59.6% / 0.2)",
41098
+ active: "rgb(100% 72.9% 72.9% / 0.3)"
41087
41099
  },
41088
41100
  text: {
41089
41101
  "default": "#c10000"
@@ -41170,7 +41182,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41170
41182
  },
41171
41183
  danger: {
41172
41184
  background: {
41173
- "default": "#ffdddd",
41185
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
41174
41186
  hover: "#ff9898",
41175
41187
  active: "#ffbaba"
41176
41188
  },
@@ -41180,9 +41192,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41180
41192
  active: "#c10000"
41181
41193
  },
41182
41194
  stroke: {
41183
- "default": "#ffdddd",
41184
- hover: "#ff9898",
41185
- active: "lch(78 26.3 22)"
41195
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
41196
+ hover: "rgb(100% 59.6% 59.6% / 0.2)",
41197
+ active: "rgb(100% 72.9% 72.9% / 0.3)"
41186
41198
  }
41187
41199
  },
41188
41200
  ghost: {
@@ -41204,7 +41216,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41204
41216
  },
41205
41217
  info: {
41206
41218
  background: {
41207
- "default": "#dae6fc",
41219
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
41208
41220
  hover: "#b5cdf9",
41209
41221
  active: "#91b3f6"
41210
41222
  },
@@ -41214,7 +41226,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41214
41226
  active: "#135be6"
41215
41227
  },
41216
41228
  stroke: {
41217
- "default": "#dae6fc",
41229
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
41218
41230
  hover: "#b5cdf9",
41219
41231
  active: "#91b3f6"
41220
41232
  }
@@ -41286,7 +41298,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41286
41298
  stroke: {
41287
41299
  "default": "#e6e7e9",
41288
41300
  hover: "#e6e7e9",
41289
- active: "lch(84 2.28 258)",
41301
+ active: "rgb(81.2% 82.3% 83.8%)",
41290
41302
  disabled: "rgba(0,0,0,0)"
41291
41303
  }
41292
41304
  }
@@ -41368,7 +41380,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41368
41380
  background: {
41369
41381
  "default": "#ffffff",
41370
41382
  hover: "#f6f7fa",
41371
- active: "lch(92.4 1.49 272)",
41383
+ active: "rgb(91.6% 92% 93.1%)",
41372
41384
  disabled: "#dfdfdf"
41373
41385
  },
41374
41386
  title: {
@@ -41462,8 +41474,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41462
41474
  active: "#161517"
41463
41475
  },
41464
41476
  background: {
41465
- "default": "lch(97.2 1.57 272 / 0.9)",
41466
- hover: "lch(91.8 1.07 266)",
41477
+ "default": "rgb(96.5% 96.9% 98% / 0.9)",
41478
+ hover: "rgb(90.4% 90.8% 91.6%)",
41467
41479
  active: "lch(89.3 1.07 266)"
41468
41480
  },
41469
41481
  stroke: {
@@ -41938,12 +41950,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41938
41950
  "default": {
41939
41951
  label: {
41940
41952
  "default": "#ffffff",
41941
- hover: "lch(100 0 0)",
41953
+ hover: "rgb(100% 100% 100%)",
41942
41954
  active: "#ffffff"
41943
41955
  },
41944
41956
  icon: {
41945
41957
  "default": "#ffffff",
41946
- hover: "lch(100 0 0)",
41958
+ hover: "rgb(100% 100% 100%)",
41947
41959
  active: "#ffffff"
41948
41960
  }
41949
41961
  },
@@ -41955,7 +41967,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41955
41967
  },
41956
41968
  icon: {
41957
41969
  "default": "#FAFF69",
41958
- hover: "lch(98.8 31.4 104)",
41970
+ hover: "rgb(99.6% 100% 75%)",
41959
41971
  active: "#FAFF69"
41960
41972
  }
41961
41973
  }
@@ -41965,11 +41977,11 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41965
41977
  color: {
41966
41978
  background: {
41967
41979
  "default": "#1F1F1C",
41968
- success: "#004206",
41969
- neutral: "#414141",
41970
- danger: "#610000",
41971
- warning: "#4f2b00",
41972
- info: "#09255B"
41980
+ success: "rgb(20% 100% 26.7% / 0.2)",
41981
+ neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
41982
+ danger: "rgb(100% 13.7% 13.7% / 0.2)",
41983
+ warning: "rgb(100% 58% 8.63% / 0.2)",
41984
+ info: "rgb(7.45% 35.7% 90.2% / 0.2)"
41973
41985
  },
41974
41986
  text: {
41975
41987
  "default": "#b3b6bd",
@@ -41981,11 +41993,11 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41981
41993
  },
41982
41994
  iconBackground: {
41983
41995
  "default": "#1F1F1C",
41984
- success: "#004206",
41985
- neutral: "#414141",
41986
- danger: "#610000",
41987
- warning: "#4f2b00",
41988
- info: "#09255B"
41996
+ success: "rgb(20% 100% 26.7% / 0)",
41997
+ neutral: "rgb(62.7% 62.7% 62.7% / 0)",
41998
+ danger: "rgb(100% 13.7% 13.7% / 0)",
41999
+ warning: "rgb(100% 58% 8.63% / 0)",
42000
+ info: "rgb(7.45% 35.7% 90.2% / 0)"
41989
42001
  },
41990
42002
  iconForeground: {
41991
42003
  "default": "#b3b6bd",
@@ -42015,12 +42027,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42015
42027
  color: {
42016
42028
  background: {
42017
42029
  "default": "#1F1F1C",
42018
- success: "#004206",
42019
- neutral: "#414141",
42020
- danger: "#610000",
42030
+ success: "rgb(20% 100% 26.7% / 0.2)",
42031
+ neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
42032
+ danger: "rgb(100% 13.7% 13.7% / 0.2)",
42021
42033
  disabled: "#414141",
42022
- info: "#09255B",
42023
- warning: "#4f2b00"
42034
+ info: "rgb(7.45% 35.7% 90.2% / 0.2)",
42035
+ warning: "rgb(100% 58% 8.63% / 0.2)"
42024
42036
  },
42025
42037
  text: {
42026
42038
  "default": "#b3b6bd",
@@ -42033,12 +42045,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42033
42045
  },
42034
42046
  stroke: {
42035
42047
  "default": "#323232",
42036
- success: "#004206",
42037
- neutral: "#414141",
42038
- danger: "#610000",
42048
+ success: "rgb(20% 100% 26.7% / 0.1)",
42049
+ neutral: "rgb(62.7% 62.7% 62.7% / 0.1)",
42050
+ danger: "rgb(100% 22.3% 22.3% / 0.2)",
42039
42051
  disabled: "rgb(24.2% 24.2% 24.2%)",
42040
- info: "#09255B",
42041
- warning: "#4f2b00"
42052
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)",
42053
+ warning: "rgb(100% 58% 8.63% / 0.1)"
42042
42054
  }
42043
42055
  }
42044
42056
  },
@@ -42057,8 +42069,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42057
42069
  muted: "#b3b6bd"
42058
42070
  },
42059
42071
  title: {
42060
- "default": "lch(97.5 0 0)",
42061
- muted: "lch(97.5 0 0)"
42072
+ "default": "rgb(97.5% 97.5% 97.5%)",
42073
+ muted: "rgb(97.5% 97.5% 97.5%)"
42062
42074
  }
42063
42075
  }
42064
42076
  },
@@ -42081,7 +42093,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42081
42093
  stroke: {
42082
42094
  "default": "#FAFF69",
42083
42095
  hover: "#FAFF69",
42084
- active: "lch(83.3 60.6 103)",
42096
+ active: "rgb(83% 84.6% 34.9%)",
42085
42097
  disabled: "#414141"
42086
42098
  }
42087
42099
  },
@@ -42107,9 +42119,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42107
42119
  },
42108
42120
  danger: {
42109
42121
  background: {
42110
- "default": "#610000",
42111
- hover: "#910000",
42112
- active: "lch(28.6 65.8 40)",
42122
+ "default": "rgb(100% 13.7% 13.7% / 0.2)",
42123
+ hover: "rgb(100% 13.7% 13.7% / 0.3)",
42124
+ active: "rgb(100% 13.7% 13.7% / 0.45)",
42113
42125
  disabled: "#414141"
42114
42126
  },
42115
42127
  text: {
@@ -42119,9 +42131,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42119
42131
  disabled: "#808080"
42120
42132
  },
42121
42133
  stroke: {
42122
- "default": "#610000",
42123
- hover: "#910000",
42124
- active: "lch(28.6 65.8 40)",
42134
+ "default": "rgb(100% 22.3% 22.3% / 0.1)",
42135
+ hover: "rgb(100% 13.7% 13.7% / 0.05)",
42136
+ active: "rgb(100% 13.7% 13.7% / 0.05)",
42125
42137
  disabled: "#414141"
42126
42138
  }
42127
42139
  },
@@ -42170,12 +42182,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42170
42182
  background: {
42171
42183
  "default": "#FAFF69",
42172
42184
  hover: "rgb(98.6% 100% 58.8%)",
42173
- active: "lch(86.5 62.9 103)"
42185
+ active: "rgb(86.2% 87.9% 36.2%)"
42174
42186
  },
42175
42187
  stroke: {
42176
42188
  "default": "rgba(0,0,0,0)",
42177
42189
  hover: "rgb(98.6% 100% 58.8%)",
42178
- active: "lch(86.5 62.9 103)"
42190
+ active: "rgb(86.2% 87.9% 36.2%)"
42179
42191
  },
42180
42192
  text: {
42181
42193
  "default": "#1F1F1C",
@@ -42193,9 +42205,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42193
42205
  },
42194
42206
  danger: {
42195
42207
  background: {
42196
- "default": "#610000",
42208
+ "default": "rgb(100% 13.7% 13.7% / 0.2)",
42197
42209
  hover: "#ff9898",
42198
- active: "#ffbaba"
42210
+ active: "#c10000"
42199
42211
  },
42200
42212
  text: {
42201
42213
  "default": "#ffbaba",
@@ -42203,9 +42215,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42203
42215
  active: "#ffbaba"
42204
42216
  },
42205
42217
  stroke: {
42206
- "default": "#610000",
42207
- hover: "#910000",
42208
- active: "lch(28.6 65.8 40)"
42218
+ "default": "rgb(100% 13.7% 13.7% / 0.2)",
42219
+ hover: "rgb(100% 13.7% 13.7% / 0.3)",
42220
+ active: "rgb(100% 13.7% 13.7% / 0.45)"
42209
42221
  }
42210
42222
  },
42211
42223
  ghost: {
@@ -42227,7 +42239,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42227
42239
  },
42228
42240
  info: {
42229
42241
  background: {
42230
- "default": "#09255B",
42242
+ "default": "rgb(7.45% 35.7% 90.2% / 0.2)",
42231
42243
  hover: "#0e44ad",
42232
42244
  active: "#135be6"
42233
42245
  },
@@ -42237,7 +42249,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42237
42249
  active: "#b5cdf9"
42238
42250
  },
42239
42251
  stroke: {
42240
- "default": "#09255B",
42252
+ "default": "rgb(7.45% 35.7% 90.2% / 0.2)",
42241
42253
  hover: "#0e44ad",
42242
42254
  active: "#135be6"
42243
42255
  }
@@ -42250,14 +42262,14 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42250
42262
  main: {
42251
42263
  "default": "#FAFF69",
42252
42264
  hover: "lch(89.7 46.7 104)",
42253
- active: "lch(83.3 60.6 103)",
42254
- disabled: "lch(25.2 0 0)"
42265
+ active: "rgb(83% 84.6% 34.9%)",
42266
+ disabled: "rgb(23.3% 23.3% 23.3%)"
42255
42267
  },
42256
42268
  action: {
42257
- "default": "lch(87.8 63.4 103)",
42258
- hover: "lch(82.5 43 104)",
42259
- active: "lch(73.3 53.3 103)",
42260
- disabled: "lch(22.2 0 0)"
42269
+ "default": "rgb(88.2% 90% 37.1%)",
42270
+ hover: "rgb(81.8% 83.2% 49.2%)",
42271
+ active: "rgb(73% 74.4% 30.7%)",
42272
+ disabled: "rgb(20.5% 20.5% 20.5%)"
42261
42273
  }
42262
42274
  },
42263
42275
  text: {
@@ -42273,17 +42285,17 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42273
42285
  disabled: "rgba(0,0,0,0)"
42274
42286
  },
42275
42287
  divide: {
42276
- "default": "lch(85.4 61.7 103)",
42277
- hover: "lch(78.5 40.9 104)",
42278
- active: "lch(72.9 53 103)",
42279
- disabled: "lch(23.1 0 0)"
42288
+ "default": "rgb(85.8% 87.5% 36%)",
42289
+ hover: "rgb(77.8% 79.1% 46.8%)",
42290
+ active: "rgb(72.6% 74% 30.5%)",
42291
+ disabled: "rgb(21.3% 21.3% 21.3%)"
42280
42292
  }
42281
42293
  },
42282
42294
  secondary: {
42283
42295
  divide: {
42284
42296
  "default": "lch(31.2 0 0)",
42285
42297
  hover: "lch(34.8 0 0)",
42286
- active: "lch(24.8 2.56 307)",
42298
+ active: "rgb(23.7% 22.9% 24.4%)",
42287
42299
  disabled: "lch(23.4 0 0)"
42288
42300
  },
42289
42301
  background: {
@@ -42295,9 +42307,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42295
42307
  },
42296
42308
  action: {
42297
42309
  "default": "#282828",
42298
- hover: "lch(18.2 0 0)",
42299
- active: "lch(21.9 0 0)",
42300
- disabled: "lch(23.9 0 0)"
42310
+ hover: "rgb(17.8% 17.8% 17.8%)",
42311
+ active: "rgb(20.7% 20.7% 20.7%)",
42312
+ disabled: "rgb(22.1% 22.1% 22.1%)"
42301
42313
  }
42302
42314
  },
42303
42315
  text: {
@@ -42309,7 +42321,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42309
42321
  stroke: {
42310
42322
  "default": "#414141",
42311
42323
  hover: "#414141",
42312
- active: "lch(24.8 2.56 307)",
42324
+ active: "rgb(23.7% 22.9% 24.4%)",
42313
42325
  disabled: "rgba(0,0,0,0)"
42314
42326
  }
42315
42327
  }
@@ -42319,7 +42331,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42319
42331
  background: {
42320
42332
  "default": "rgba(0,0,0,0)",
42321
42333
  hover: "#282828",
42322
- active: "lch(18.2 0 0)",
42334
+ active: "rgb(17.8% 17.8% 17.8%)",
42323
42335
  disabled: "rgba(0,0,0,0)",
42324
42336
  "disabled-active": "lch(0 0 0 / 0)",
42325
42337
  panel: "rgba(0,0,0,0)"
@@ -42352,7 +42364,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42352
42364
  background: {
42353
42365
  "default": "rgba(0,0,0,0)",
42354
42366
  hover: "#282828",
42355
- active: "lch(15.8 0 0)"
42367
+ active: "rgb(15.4% 15.4% 15.4%)"
42356
42368
  },
42357
42369
  stroke: {
42358
42370
  "default": "#323232",
@@ -42373,13 +42385,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42373
42385
  background: {
42374
42386
  "default": "#1F1F1C",
42375
42387
  hover: "#282828",
42376
- active: "lch(15.3 0 0)",
42388
+ active: "rgb(14.9% 14.9% 14.9%)",
42377
42389
  disabled: "#414141"
42378
42390
  },
42379
42391
  title: {
42380
- "default": "lch(97.5 0 0)",
42381
- hover: "lch(97.5 0 0)",
42382
- active: "lch(97.5 0 0)",
42392
+ "default": "rgb(97.5% 97.5% 97.5%)",
42393
+ hover: "rgb(97.5% 97.5% 97.5%)",
42394
+ active: "rgb(97.5% 97.5% 97.5%)",
42383
42395
  disabled: "#808080"
42384
42396
  },
42385
42397
  description: {
@@ -42397,7 +42409,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42397
42409
  stroke: {
42398
42410
  "default": "#323232",
42399
42411
  hover: "#323232",
42400
- active: "lch(19.7 0 0)",
42412
+ active: "rgb(18.6% 18.6% 18.6%)",
42401
42413
  disabled: "#414141"
42402
42414
  }
42403
42415
  }
@@ -42407,13 +42419,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42407
42419
  background: {
42408
42420
  "default": "#1F1F1C",
42409
42421
  hover: "#282828",
42410
- active: "lch(15.3 0 0)",
42422
+ active: "rgb(14.9% 14.9% 14.9%)",
42411
42423
  disabled: "#414141"
42412
42424
  },
42413
42425
  title: {
42414
- "default": "lch(97.5 0 0)",
42415
- hover: "lch(97.5 0 0)",
42416
- active: "lch(97.5 0 0)",
42426
+ "default": "rgb(97.5% 97.5% 97.5%)",
42427
+ hover: "rgb(97.5% 97.5% 97.5%)",
42428
+ active: "rgb(97.5% 97.5% 97.5%)",
42417
42429
  disabled: "#808080"
42418
42430
  },
42419
42431
  description: {
@@ -42440,9 +42452,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42440
42452
  disabled: "#414141"
42441
42453
  },
42442
42454
  title: {
42443
- "default": "lch(97.5 0 0)",
42444
- hover: "lch(97.5 0 0)",
42445
- active: "lch(97.5 0 0)",
42455
+ "default": "rgb(97.5% 97.5% 97.5%)",
42456
+ hover: "rgb(97.5% 97.5% 97.5%)",
42457
+ active: "rgb(97.5% 97.5% 97.5%)",
42446
42458
  disabled: "#808080"
42447
42459
  },
42448
42460
  description: {
@@ -42468,9 +42480,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42468
42480
  disabled: "#414141"
42469
42481
  },
42470
42482
  title: {
42471
- "default": "lch(97.5 0 0)",
42472
- hover: "lch(97.5 0 0)",
42473
- active: "lch(97.5 0 0)",
42483
+ "default": "rgb(97.5% 97.5% 97.5%)",
42484
+ hover: "rgb(97.5% 97.5% 97.5%)",
42485
+ active: "rgb(97.5% 97.5% 97.5%)",
42474
42486
  disabled: "#808080"
42475
42487
  },
42476
42488
  description: {
@@ -42501,9 +42513,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42501
42513
  active: "#FAFF69"
42502
42514
  },
42503
42515
  background: {
42504
- "default": "lch(16.1 0 0 / 0.9)",
42505
- hover: "lch(18.2 0 0 / 0.9)",
42506
- active: "lch(20.2 0 0 / 0.9)"
42516
+ "default": "rgb(15.7% 15.7% 15.7% / 0.9)",
42517
+ hover: "rgb(17.8% 17.8% 17.8% / 0.9)",
42518
+ active: "rgb(19.9% 19.9% 19.9% / 0.9)"
42507
42519
  },
42508
42520
  stroke: {
42509
42521
  "default": "linear-gradient(174deg, #FAFF69 8.31%, #2C2E31 22.92%)",
@@ -42517,8 +42529,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42517
42529
  checkbox: {
42518
42530
  color: {
42519
42531
  background: {
42520
- "default": "lch(18.2 0 0)",
42521
- hover: "lch(18.2 0 0)",
42532
+ "default": "rgb(17.8% 17.8% 17.8%)",
42533
+ hover: "rgb(17.8% 17.8% 17.8%)",
42522
42534
  active: "#FAFF69",
42523
42535
  disabled: "#414141"
42524
42536
  },
@@ -42596,7 +42608,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42596
42608
  monacoTheme: {
42597
42609
  parameter: {
42598
42610
  foreground: "#c0c0c0",
42599
- background: "#414141"
42611
+ background: "rgb(62.7% 62.7% 62.7% / 0.2)"
42600
42612
  }
42601
42613
  }
42602
42614
  },
@@ -42616,11 +42628,11 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42616
42628
  field: {
42617
42629
  color: {
42618
42630
  background: {
42619
- "default": "lch(18.2 0 0)",
42620
- hover: "lch(20.2 0 0)",
42621
- active: "lch(20.2 0 0)",
42631
+ "default": "rgb(17.8% 17.8% 17.8%)",
42632
+ hover: "rgb(19.9% 19.9% 19.9%)",
42633
+ active: "rgb(19.9% 19.9% 19.9%)",
42622
42634
  disabled: "#414141",
42623
- error: "lch(20.2 0 0)"
42635
+ error: "rgb(19.9% 19.9% 19.9%)"
42624
42636
  },
42625
42637
  text: {
42626
42638
  "default": "#e6e7e9",
@@ -42630,8 +42642,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42630
42642
  error: "#ffbaba"
42631
42643
  },
42632
42644
  stroke: {
42633
- "default": "lch(24.7 0 0)",
42634
- hover: "lch(28.5 0 0)",
42645
+ "default": "rgb(23.6% 23.6% 23.6%)",
42646
+ hover: "rgb(27.4% 27.4% 27.4%)",
42635
42647
  active: "#FAFF69",
42636
42648
  disabled: "#414141",
42637
42649
  error: "#ffbaba"
@@ -42644,11 +42656,11 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42644
42656
  error: "#ffbaba"
42645
42657
  },
42646
42658
  format: {
42647
- "default": "lch(62.9 0 0)",
42648
- hover: "lch(62.9 0 0)",
42649
- active: "lch(62.9 0 0)",
42659
+ "default": "rgb(60.2% 60.2% 60.2%)",
42660
+ hover: "rgb(60.2% 60.2% 60.2%)",
42661
+ active: "rgb(60.2% 60.2% 60.2%)",
42650
42662
  disabled: "#808080",
42651
- error: "lch(62.9 0 0)"
42663
+ error: "rgb(60.2% 60.2% 60.2%)"
42652
42664
  },
42653
42665
  genericLabel: {
42654
42666
  "default": "#ffffff",
@@ -42674,16 +42686,16 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42674
42686
  },
42675
42687
  background: {
42676
42688
  "default": "#282828",
42677
- hover: "lch(23.5 0 0)",
42689
+ hover: "rgb(23.1% 23.1% 23.1%)",
42678
42690
  active: "#282828",
42679
42691
  disabled: "#414141"
42680
42692
  },
42681
42693
  format: {
42682
42694
  "default": "lch(62.9 0 0)",
42683
- hover: "lch(62.9 0 0)",
42684
- active: "lch(62.9 0 0)",
42695
+ hover: "rgb(60.2% 60.2% 60.2%)",
42696
+ active: "rgb(60.2% 60.2% 60.2%)",
42685
42697
  disabled: "#808080",
42686
- error: "lch(62.9 0 0)"
42698
+ error: "rgb(60.2% 60.2% 60.2%)"
42687
42699
  },
42688
42700
  stroke: {
42689
42701
  "default": "#323232"
@@ -42768,8 +42780,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42768
42780
  radio: {
42769
42781
  color: {
42770
42782
  background: {
42771
- "default": "lch(18.2 0 0)",
42772
- hover: "lch(18.2 0 0)",
42783
+ "default": "rgb(17.8% 17.8% 17.8%)",
42784
+ hover: "rgb(17.8% 17.8% 17.8%)",
42773
42785
  active: "#FAFF69",
42774
42786
  disabled: "#414141"
42775
42787
  },
@@ -42781,7 +42793,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42781
42793
  },
42782
42794
  indicator: {
42783
42795
  "default": "#1F1F1C",
42784
- hover: "lch(18.2 0 0)",
42796
+ hover: "rgb(17.8% 17.8% 17.8%)",
42785
42797
  active: "#151515",
42786
42798
  disabled: "#808080"
42787
42799
  }
@@ -43026,10 +43038,10 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43026
43038
  background: {
43027
43039
  "default": "#282828",
43028
43040
  hover: "#282828",
43029
- active: "lch(18.2 0 0)"
43041
+ active: "rgb(17.8% 17.8% 17.8%)"
43030
43042
  },
43031
43043
  title: {
43032
- "default": "lch(97.5 0 0)"
43044
+ "default": "rgb(97.5% 97.5% 97.5%)"
43033
43045
  },
43034
43046
  icon: {
43035
43047
  "default": "#ffffff"
@@ -43049,7 +43061,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43049
43061
  background: {
43050
43062
  "default": "#1F1F1C",
43051
43063
  hover: "lch(15.8 0 0)",
43052
- active: "lch(17.9 0 0)"
43064
+ active: "rgb(17.5% 17.5% 17.5%)"
43053
43065
  },
43054
43066
  stroke: {
43055
43067
  "default": "#323232"
@@ -43128,7 +43140,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43128
43140
  toast: {
43129
43141
  color: {
43130
43142
  title: {
43131
- "default": "lch(97.5 0 0)"
43143
+ "default": "rgb(97.5% 97.5% 97.5%)"
43132
43144
  },
43133
43145
  description: {
43134
43146
  "default": "#b3b6bd"
@@ -43137,7 +43149,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43137
43149
  "default": "#414141"
43138
43150
  },
43139
43151
  icon: {
43140
- "default": "lch(97.5 0 0)",
43152
+ "default": "rgb(97.5% 97.5% 97.5%)",
43141
43153
  success: "#CCFFD0",
43142
43154
  warning: "#ffca8b",
43143
43155
  danger: "#ffbaba"
@@ -43160,7 +43172,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43160
43172
  "default": "#1F1F1C"
43161
43173
  },
43162
43174
  title: {
43163
- "default": "lch(97.5 0 0)"
43175
+ "default": "rgb(97.5% 97.5% 97.5%)"
43164
43176
  },
43165
43177
  description: {
43166
43178
  "default": "#b3b6bd"
@@ -43176,7 +43188,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43176
43188
  "default": "#282828"
43177
43189
  },
43178
43190
  title: {
43179
- "default": "lch(97.5 0 0)"
43191
+ "default": "rgb(97.5% 97.5% 97.5%)"
43180
43192
  },
43181
43193
  description: {
43182
43194
  "default": "#b3b6bd"
@@ -43270,10 +43282,10 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43270
43282
  "default": "#FAFF69"
43271
43283
  },
43272
43284
  shadow: {
43273
- "default": "lch(6.77 0 0 / 0.6)"
43285
+ "default": "rgb(8.24% 8.24% 8.24% / 0.6)"
43274
43286
  },
43275
43287
  title: {
43276
- "default": "lch(97.5 0 0)",
43288
+ "default": "rgb(97.5% 97.5% 97.5%)",
43277
43289
  muted: "#b3b6bd"
43278
43290
  }
43279
43291
  }
@@ -43281,23 +43293,23 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43281
43293
  feedback: {
43282
43294
  color: {
43283
43295
  info: {
43284
- background: "#09255B",
43296
+ background: "rgb(7.45% 35.7% 90.2% / 0.2)",
43285
43297
  foreground: "#b5cdf9"
43286
43298
  },
43287
43299
  success: {
43288
- background: "#004206",
43300
+ background: "rgb(20% 100% 26.7% / 0.2)",
43289
43301
  foreground: "#CCFFD0"
43290
43302
  },
43291
43303
  warning: {
43292
- background: "#4f2b00",
43304
+ background: "rgb(100% 58% 8.63% / 0.2)",
43293
43305
  foreground: "#ffca8b"
43294
43306
  },
43295
43307
  danger: {
43296
- background: "#610000",
43308
+ background: "rgb(100% 13.7% 13.7% / 0.2)",
43297
43309
  foreground: "#ffbaba"
43298
43310
  },
43299
43311
  neutral: {
43300
- background: "#414141",
43312
+ background: "rgb(62.7% 62.7% 62.7% / 0.2)",
43301
43313
  foreground: "#c0c0c0",
43302
43314
  stroke: "#323232"
43303
43315
  }
@@ -43439,11 +43451,11 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43439
43451
  color: {
43440
43452
  background: {
43441
43453
  "default": "#ffffff",
43442
- success: "#E5FFE8",
43443
- neutral: "#e6e7e9",
43444
- danger: "#ffdddd",
43445
- warning: "#ffedd8",
43446
- info: "#dae6fc"
43454
+ success: "rgb(20% 100% 26.7% / 0.1)",
43455
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43456
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
43457
+ warning: "rgb(100% 58% 8.63% / 0.1)",
43458
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)"
43447
43459
  },
43448
43460
  text: {
43449
43461
  "default": "#696e79",
@@ -43455,11 +43467,11 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43455
43467
  },
43456
43468
  iconBackground: {
43457
43469
  "default": "#ffffff",
43458
- success: "#E5FFE8",
43459
- neutral: "#e6e7e9",
43460
- danger: "#ffdddd",
43461
- warning: "#ffedd8",
43462
- info: "#dae6fc"
43470
+ success: "rgb(20% 100% 26.7% / 0)",
43471
+ neutral: "rgb(41.2% 43.1% 47.5% / 0)",
43472
+ danger: "rgb(100% 13.7% 13.7% / 0)",
43473
+ warning: "rgb(100% 58% 8.63% / 0)",
43474
+ info: "rgb(7.45% 35.7% 90.2% / 0)"
43463
43475
  },
43464
43476
  iconForeground: {
43465
43477
  "default": "#696e79",
@@ -43488,13 +43500,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43488
43500
  badge: {
43489
43501
  color: {
43490
43502
  background: {
43491
- "default": "#ffffff",
43492
- success: "#E5FFE8",
43493
- neutral: "#e6e7e9",
43494
- danger: "#ffdddd",
43503
+ "default": "#f6f7fa",
43504
+ success: "rgb(20% 100% 26.7% / 0.1)",
43505
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43506
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
43495
43507
  disabled: "#dfdfdf",
43496
- info: "#dae6fc",
43497
- warning: "#ffedd8"
43508
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)",
43509
+ warning: "rgb(100% 58% 8.63% / 0.1)"
43498
43510
  },
43499
43511
  text: {
43500
43512
  "default": "#696e79",
@@ -43507,12 +43519,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43507
43519
  },
43508
43520
  stroke: {
43509
43521
  "default": "#e6e7e9",
43510
- success: "#E5FFE8",
43511
- neutral: "#e6e7e9",
43512
- danger: "#ffdddd",
43513
- disabled: "lch(84.4 0 0)",
43514
- info: "#dae6fc",
43515
- warning: "#ffedd8"
43522
+ success: "rgb(20% 100% 26.7% / 0.05)",
43523
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43524
+ danger: "rgb(100% 13.7% 13.7% / 0.05)",
43525
+ disabled: "rgb(83.1% 83.1% 83.1%)",
43526
+ info: "rgb(7.45% 35.7% 90.2% / 0.05)",
43527
+ warning: "rgb(100% 58% 8.63% / 0.05)"
43516
43528
  }
43517
43529
  }
43518
43530
  },
@@ -43581,9 +43593,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43581
43593
  },
43582
43594
  danger: {
43583
43595
  background: {
43584
- "default": "#ffdddd",
43585
- hover: "#ffbaba",
43586
- active: "lch(70.3 41.1 23.9)",
43596
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
43597
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
43598
+ active: "rgb(100% 13.7% 13.7% / 0.3)",
43587
43599
  disabled: "#dfdfdf"
43588
43600
  },
43589
43601
  text: {
@@ -43593,9 +43605,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43593
43605
  disabled: "#a0a0a0"
43594
43606
  },
43595
43607
  stroke: {
43596
- "default": "#ffdddd",
43597
- hover: "#ffbaba",
43598
- active: "lch(70.3 41.1 23.9)",
43608
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
43609
+ hover: "rgb(100% 13.7% 13.7% / 0.05)",
43610
+ active: "rgb(100% 13.7% 13.7% / 0.05)",
43599
43611
  disabled: "#dfdfdf"
43600
43612
  }
43601
43613
  },
@@ -43667,9 +43679,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43667
43679
  },
43668
43680
  danger: {
43669
43681
  background: {
43670
- "default": "#ffdddd",
43671
- hover: "#ffbaba",
43672
- active: "lch(70.3 41.1 23.9)"
43682
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
43683
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
43684
+ active: "rgb(100% 13.7% 13.7% / 0.3)"
43673
43685
  },
43674
43686
  text: {
43675
43687
  "default": "#c10000",
@@ -43677,9 +43689,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43677
43689
  active: "#c10000"
43678
43690
  },
43679
43691
  stroke: {
43680
- "default": "#ffdddd",
43681
- hover: "#ffbaba",
43682
- active: "lch(70.3 41.1 23.9)"
43692
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
43693
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
43694
+ active: "rgb(100% 13.7% 13.7% / 0.3)"
43683
43695
  }
43684
43696
  },
43685
43697
  ghost: {
@@ -43701,7 +43713,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43701
43713
  },
43702
43714
  info: {
43703
43715
  background: {
43704
- "default": "#dae6fc",
43716
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
43705
43717
  hover: "#b5cdf9",
43706
43718
  active: "#91b3f6"
43707
43719
  },
@@ -43711,7 +43723,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43711
43723
  active: "#135be6"
43712
43724
  },
43713
43725
  stroke: {
43714
- "default": "#dae6fc",
43726
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
43715
43727
  hover: "#b5cdf9",
43716
43728
  active: "#91b3f6"
43717
43729
  }
@@ -43725,13 +43737,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43725
43737
  "default": "#302e32",
43726
43738
  hover: "lch(27 3.82 267)",
43727
43739
  active: "lch(5.68 1.13 305)",
43728
- disabled: "lch(81.3 0 0)"
43740
+ disabled: "rgb(80% 80% 80%)"
43729
43741
  },
43730
43742
  action: {
43731
- "default": "lch(6.24 1.29 305)",
43743
+ "default": "rgb(7.76% 7.41% 8.12%)",
43732
43744
  hover: "lch(25.6 3.63 267)",
43733
43745
  active: "lch(3.47 0.72 305)",
43734
- disabled: "lch(77.2 0 0)"
43746
+ disabled: "lch(77.9 0 0)"
43735
43747
  }
43736
43748
  },
43737
43749
  text: {
@@ -43771,7 +43783,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43771
43783
  "default": "#f6f7fa",
43772
43784
  hover: "lch(94.8 1.53 272)",
43773
43785
  active: "lch(92.9 1.5 272)",
43774
- disabled: "lch(77.2 0 0)"
43786
+ disabled: "lch(77.9 0 0)"
43775
43787
  }
43776
43788
  },
43777
43789
  text: {
@@ -43783,7 +43795,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43783
43795
  stroke: {
43784
43796
  "default": "#e6e7e9",
43785
43797
  hover: "#e6e7e9",
43786
- active: "lch(84 2.28 258)",
43798
+ active: "rgb(81.2% 82.3% 83.8%)",
43787
43799
  disabled: "rgba(0,0,0,0)"
43788
43800
  }
43789
43801
  }
@@ -43881,7 +43893,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43881
43893
  background: {
43882
43894
  "default": "#ffffff",
43883
43895
  hover: "#f6f7fa",
43884
- active: "lch(95 0 0)",
43896
+ active: "rgb(95% 95% 95%)",
43885
43897
  disabled: "#dfdfdf"
43886
43898
  },
43887
43899
  title: {
@@ -43975,8 +43987,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43975
43987
  active: "#161517"
43976
43988
  },
43977
43989
  background: {
43978
- "default": "lch(97.2 1.57 272 / 0.9)",
43979
- hover: "lch(91.8 1.07 266)",
43990
+ "default": "rgb(96.5% 96.9% 98% / 0.9)",
43991
+ hover: "rgb(90.4% 90.8% 91.6%)",
43980
43992
  active: "lch(89.8 1.08 266)"
43981
43993
  },
43982
43994
  stroke: {
@@ -44064,7 +44076,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44064
44076
  monacoTheme: {
44065
44077
  parameter: {
44066
44078
  foreground: "#53575f",
44067
- background: "#e6e7e9"
44079
+ background: "rgb(41.2% 43.1% 47.5% / 0.1)"
44068
44080
  }
44069
44081
  }
44070
44082
  },
@@ -44084,8 +44096,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44084
44096
  field: {
44085
44097
  color: {
44086
44098
  background: {
44087
- "default": "lch(97.3 1.53 272)",
44088
- hover: "lch(97.3 1.53 272)",
44099
+ "default": "rgb(96.6% 96.9% 98.1%)",
44100
+ hover: "rgb(96.6% 96.9% 98.1%)",
44089
44101
  active: "#ffffff",
44090
44102
  disabled: "#dfdfdf",
44091
44103
  error: "#ffffff"
@@ -44098,8 +44110,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44098
44110
  error: "#c10000"
44099
44111
  },
44100
44112
  stroke: {
44101
- "default": "lch(92 1.05 266)",
44102
- hover: "lch(83.8 2.3 258)",
44113
+ "default": "rgb(90.7% 91.1% 91.8%)",
44114
+ hover: "rgb(81% 82.1% 83.6%)",
44103
44115
  active: "#161517",
44104
44116
  disabled: "#dfdfdf",
44105
44117
  error: "#c10000"
@@ -44142,7 +44154,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44142
44154
  },
44143
44155
  background: {
44144
44156
  "default": "#ffffff",
44145
- hover: "lch(97.5 1.43 272)",
44157
+ hover: "rgb(96.8% 97.1% 98.2%)",
44146
44158
  active: "#ffffff",
44147
44159
  disabled: "#ffffff"
44148
44160
  },
@@ -44496,7 +44508,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44496
44508
  background: {
44497
44509
  "default": "#f6f7fa",
44498
44510
  hover: "#f6f7fa",
44499
- active: "lch(90.3 11.8 266)"
44511
+ active: "rgb(85% 89.5% 97.8%)"
44500
44512
  },
44501
44513
  title: {
44502
44514
  "default": "#161517"
@@ -44519,7 +44531,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44519
44531
  background: {
44520
44532
  "default": "#ffffff",
44521
44533
  hover: "lch(90.9 12.2 266 / 0.2)",
44522
- active: "lch(91.1 11.9 266 / 0.2)"
44534
+ active: "rgb(85.9% 90.4% 98.9% / 0.2)"
44523
44535
  },
44524
44536
  stroke: {
44525
44537
  "default": "#e6e7e9"
@@ -44748,23 +44760,23 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44748
44760
  feedback: {
44749
44761
  color: {
44750
44762
  info: {
44751
- background: "#dae6fc",
44763
+ background: "rgb(7.45% 35.7% 90.2% / 0.1)",
44752
44764
  foreground: "#135be6"
44753
44765
  },
44754
44766
  success: {
44755
- background: "#E5FFE8",
44767
+ background: "rgb(20% 100% 26.7% / 0.1)",
44756
44768
  foreground: "#00990D"
44757
44769
  },
44758
44770
  warning: {
44759
- background: "#ffedd8",
44771
+ background: "rgb(100% 58% 8.63% / 0.1)",
44760
44772
  foreground: "#9e5600"
44761
44773
  },
44762
44774
  danger: {
44763
- background: "#ffdddd",
44775
+ background: "rgb(100% 13.7% 13.7% / 0.1)",
44764
44776
  foreground: "#c10000"
44765
44777
  },
44766
44778
  neutral: {
44767
- background: "#e6e7e9",
44779
+ background: "rgb(41.2% 43.1% 47.5% / 0.1)",
44768
44780
  foreground: "#53575f",
44769
44781
  stroke: "#e6e7e9"
44770
44782
  }
@@ -45002,11 +45014,11 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45002
45014
  color: {
45003
45015
  background: {
45004
45016
  "default": "#ffffff",
45005
- success: "#E5FFE8",
45006
- neutral: "#e6e7e9",
45007
- danger: "#ffdddd",
45008
- warning: "#ffedd8",
45009
- info: "#dae6fc"
45017
+ success: "rgb(20% 100% 26.7% / 0.1)",
45018
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45019
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
45020
+ warning: "rgb(100% 58% 8.63% / 0.1)",
45021
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)"
45010
45022
  },
45011
45023
  text: {
45012
45024
  "default": "#696e79",
@@ -45018,11 +45030,11 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45018
45030
  },
45019
45031
  iconBackground: {
45020
45032
  "default": "#ffffff",
45021
- success: "#E5FFE8",
45022
- neutral: "#e6e7e9",
45023
- danger: "#ffdddd",
45024
- warning: "#ffedd8",
45025
- info: "#dae6fc"
45033
+ success: "rgb(20% 100% 26.7% / 0)",
45034
+ neutral: "rgb(41.2% 43.1% 47.5% / 0)",
45035
+ danger: "rgb(100% 13.7% 13.7% / 0)",
45036
+ warning: "rgb(100% 58% 8.63% / 0)",
45037
+ info: "rgb(7.45% 35.7% 90.2% / 0)"
45026
45038
  },
45027
45039
  iconForeground: {
45028
45040
  "default": "#696e79",
@@ -45115,13 +45127,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45115
45127
  },
45116
45128
  color: {
45117
45129
  background: {
45118
- "default": "#ffffff",
45119
- success: "#E5FFE8",
45120
- neutral: "#e6e7e9",
45121
- danger: "#ffdddd",
45130
+ "default": "#f6f7fa",
45131
+ success: "rgb(20% 100% 26.7% / 0.1)",
45132
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45133
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
45122
45134
  disabled: "#dfdfdf",
45123
- info: "#dae6fc",
45124
- warning: "#ffedd8"
45135
+ info: "rgb(7.45% 35.7% 90.2% / 0.1)",
45136
+ warning: "rgb(100% 58% 8.63% / 0.1)"
45125
45137
  },
45126
45138
  text: {
45127
45139
  "default": "#696e79",
@@ -45134,12 +45146,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45134
45146
  },
45135
45147
  stroke: {
45136
45148
  "default": "#e6e7e9",
45137
- success: "#E5FFE8",
45138
- neutral: "#e6e7e9",
45139
- danger: "#ffdddd",
45140
- disabled: "lch(84.4 0 0)",
45141
- info: "#dae6fc",
45142
- warning: "#ffedd8"
45149
+ success: "rgb(20% 100% 26.7% / 0.05)",
45150
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45151
+ danger: "rgb(100% 13.7% 13.7% / 0.05)",
45152
+ disabled: "rgb(83.1% 83.1% 83.1%)",
45153
+ info: "rgb(7.45% 35.7% 90.2% / 0.05)",
45154
+ warning: "rgb(100% 58% 8.63% / 0.05)"
45143
45155
  }
45144
45156
  }
45145
45157
  },
@@ -45274,9 +45286,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45274
45286
  },
45275
45287
  danger: {
45276
45288
  background: {
45277
- "default": "#ffdddd",
45278
- hover: "#ffbaba",
45279
- active: "lch(70.3 41.1 23.9)",
45289
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
45290
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
45291
+ active: "rgb(100% 13.7% 13.7% / 0.3)",
45280
45292
  disabled: "#dfdfdf"
45281
45293
  },
45282
45294
  text: {
@@ -45286,9 +45298,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45286
45298
  disabled: "#a0a0a0"
45287
45299
  },
45288
45300
  stroke: {
45289
- "default": "#ffdddd",
45290
- hover: "#ffbaba",
45291
- active: "lch(70.3 41.1 23.9)",
45301
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
45302
+ hover: "rgb(100% 13.7% 13.7% / 0.05)",
45303
+ active: "rgb(100% 13.7% 13.7% / 0.05)",
45292
45304
  disabled: "#dfdfdf"
45293
45305
  }
45294
45306
  },
@@ -45386,9 +45398,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45386
45398
  },
45387
45399
  danger: {
45388
45400
  background: {
45389
- "default": "#ffdddd",
45390
- hover: "#ffbaba",
45391
- active: "lch(70.3 41.1 23.9)"
45401
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
45402
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
45403
+ active: "rgb(100% 13.7% 13.7% / 0.3)"
45392
45404
  },
45393
45405
  text: {
45394
45406
  "default": "#c10000",
@@ -45396,9 +45408,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45396
45408
  active: "#c10000"
45397
45409
  },
45398
45410
  stroke: {
45399
- "default": "#ffdddd",
45400
- hover: "#ffbaba",
45401
- active: "lch(70.3 41.1 23.9)"
45411
+ "default": "rgb(100% 13.7% 13.7% / 0.1)",
45412
+ hover: "rgb(100% 13.7% 13.7% / 0.2)",
45413
+ active: "rgb(100% 13.7% 13.7% / 0.3)"
45402
45414
  }
45403
45415
  },
45404
45416
  ghost: {
@@ -45420,7 +45432,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45420
45432
  },
45421
45433
  info: {
45422
45434
  background: {
45423
- "default": "#dae6fc",
45435
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
45424
45436
  hover: "#b5cdf9",
45425
45437
  active: "#91b3f6"
45426
45438
  },
@@ -45430,7 +45442,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45430
45442
  active: "#135be6"
45431
45443
  },
45432
45444
  stroke: {
45433
- "default": "#dae6fc",
45445
+ "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
45434
45446
  hover: "#b5cdf9",
45435
45447
  active: "#91b3f6"
45436
45448
  }
@@ -45471,13 +45483,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45471
45483
  "default": "#302e32",
45472
45484
  hover: "lch(27 3.82 267)",
45473
45485
  active: "lch(5.68 1.13 305)",
45474
- disabled: "lch(81.3 0 0)"
45486
+ disabled: "rgb(80% 80% 80%)"
45475
45487
  },
45476
45488
  action: {
45477
- "default": "lch(6.24 1.29 305)",
45489
+ "default": "rgb(7.76% 7.41% 8.12%)",
45478
45490
  hover: "lch(25.6 3.63 267)",
45479
45491
  active: "lch(3.47 0.72 305)",
45480
- disabled: "lch(77.2 0 0)"
45492
+ disabled: "lch(77.9 0 0)"
45481
45493
  }
45482
45494
  },
45483
45495
  text: {
@@ -45517,7 +45529,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45517
45529
  "default": "#f6f7fa",
45518
45530
  hover: "lch(94.8 1.53 272)",
45519
45531
  active: "lch(92.9 1.5 272)",
45520
- disabled: "lch(77.2 0 0)"
45532
+ disabled: "lch(77.9 0 0)"
45521
45533
  }
45522
45534
  },
45523
45535
  text: {
@@ -45529,7 +45541,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45529
45541
  stroke: {
45530
45542
  "default": "#e6e7e9",
45531
45543
  hover: "#e6e7e9",
45532
- active: "lch(84 2.28 258)",
45544
+ active: "rgb(81.2% 82.3% 83.8%)",
45533
45545
  disabled: "rgba(0,0,0,0)"
45534
45546
  }
45535
45547
  }
@@ -45757,7 +45769,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45757
45769
  background: {
45758
45770
  "default": "#ffffff",
45759
45771
  hover: "#f6f7fa",
45760
- active: "lch(95 0 0)",
45772
+ active: "rgb(95% 95% 95%)",
45761
45773
  disabled: "#dfdfdf"
45762
45774
  },
45763
45775
  title: {
@@ -45897,8 +45909,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45897
45909
  active: "#161517"
45898
45910
  },
45899
45911
  background: {
45900
- "default": "lch(97.2 1.57 272 / 0.9)",
45901
- hover: "lch(91.8 1.07 266)",
45912
+ "default": "rgb(96.5% 96.9% 98% / 0.9)",
45913
+ hover: "rgb(90.4% 90.8% 91.6%)",
45902
45914
  active: "lch(89.8 1.08 266)"
45903
45915
  },
45904
45916
  stroke: {
@@ -46029,7 +46041,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46029
46041
  monacoTheme: {
46030
46042
  parameter: {
46031
46043
  foreground: "#53575f",
46032
- background: "#e6e7e9"
46044
+ background: "rgb(41.2% 43.1% 47.5% / 0.1)"
46033
46045
  }
46034
46046
  }
46035
46047
  },
@@ -46144,8 +46156,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46144
46156
  },
46145
46157
  color: {
46146
46158
  background: {
46147
- "default": "lch(97.3 1.53 272)",
46148
- hover: "lch(97.3 1.53 272)",
46159
+ "default": "rgb(96.6% 96.9% 98.1%)",
46160
+ hover: "rgb(96.6% 96.9% 98.1%)",
46149
46161
  active: "#ffffff",
46150
46162
  disabled: "#dfdfdf",
46151
46163
  error: "#ffffff"
@@ -46158,8 +46170,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46158
46170
  error: "#c10000"
46159
46171
  },
46160
46172
  stroke: {
46161
- "default": "lch(92 1.05 266)",
46162
- hover: "lch(83.8 2.3 258)",
46173
+ "default": "rgb(90.7% 91.1% 91.8%)",
46174
+ hover: "rgb(81% 82.1% 83.6%)",
46163
46175
  active: "#161517",
46164
46176
  disabled: "#dfdfdf",
46165
46177
  error: "#c10000"
@@ -46240,7 +46252,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46240
46252
  },
46241
46253
  background: {
46242
46254
  "default": "#ffffff",
46243
- hover: "lch(97.5 1.43 272)",
46255
+ hover: "rgb(96.8% 97.1% 98.2%)",
46244
46256
  active: "#ffffff",
46245
46257
  disabled: "#ffffff"
46246
46258
  },
@@ -47017,7 +47029,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47017
47029
  background: {
47018
47030
  "default": "#f6f7fa",
47019
47031
  hover: "#f6f7fa",
47020
- active: "lch(90.3 11.8 266)"
47032
+ active: "rgb(85% 89.5% 97.8%)"
47021
47033
  },
47022
47034
  title: {
47023
47035
  "default": "#161517"
@@ -47075,7 +47087,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47075
47087
  background: {
47076
47088
  "default": "#ffffff",
47077
47089
  hover: "lch(90.9 12.2 266 / 0.2)",
47078
- active: "lch(91.1 11.9 266 / 0.2)"
47090
+ active: "rgb(85.9% 90.4% 98.9% / 0.2)"
47079
47091
  },
47080
47092
  stroke: {
47081
47093
  "default": "#e6e7e9"
@@ -47563,23 +47575,23 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47563
47575
  feedback: {
47564
47576
  color: {
47565
47577
  info: {
47566
- background: "#dae6fc",
47578
+ background: "rgb(7.45% 35.7% 90.2% / 0.1)",
47567
47579
  foreground: "#135be6"
47568
47580
  },
47569
47581
  success: {
47570
- background: "#E5FFE8",
47582
+ background: "rgb(20% 100% 26.7% / 0.1)",
47571
47583
  foreground: "#00990D"
47572
47584
  },
47573
47585
  warning: {
47574
- background: "#ffedd8",
47586
+ background: "rgb(100% 58% 8.63% / 0.1)",
47575
47587
  foreground: "#9e5600"
47576
47588
  },
47577
47589
  danger: {
47578
- background: "#ffdddd",
47590
+ background: "rgb(100% 13.7% 13.7% / 0.1)",
47579
47591
  foreground: "#c10000"
47580
47592
  },
47581
47593
  neutral: {
47582
- background: "#e6e7e9",
47594
+ background: "rgb(41.2% 43.1% 47.5% / 0.1)",
47583
47595
  foreground: "#53575f",
47584
47596
  stroke: "#e6e7e9"
47585
47597
  }