@clickhouse/click-ui 0.0.171 → 0.0.173

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.
@@ -16930,9 +16930,46 @@ var __publicField = (obj, key, value) => {
16930
16930
  }
16931
16931
  var throttle_1 = throttle$1;
16932
16932
  const throttle$2 = /* @__PURE__ */ getDefaultExportFromCjs(throttle_1);
16933
+ const initialPosition = {
16934
+ left: "calc(100% - 4px)",
16935
+ top: "0"
16936
+ };
16937
+ const useResizingState = () => {
16938
+ const [pressedColumnIndex, setPressedColumnIndex] = React.useState(-1);
16939
+ const [pointer, setPointer] = React.useState(null);
16940
+ const [position, setPosition] = React.useState(initialPosition);
16941
+ const [lastPressedTimestamp, setLastPressedTimestamp] = React.useState(0);
16942
+ const getIsPressed = React.useCallback((columnIndex) => {
16943
+ return pressedColumnIndex === columnIndex;
16944
+ }, [pressedColumnIndex]);
16945
+ const setIsPressed = React.useCallback((columnIndex, pressed) => {
16946
+ if (pressed) {
16947
+ setPressedColumnIndex(columnIndex);
16948
+ setLastPressedTimestamp(Date.now());
16949
+ } else {
16950
+ setPressedColumnIndex(-1);
16951
+ }
16952
+ }, []);
16953
+ const getPosition = React.useCallback((columnIndex) => {
16954
+ if (pressedColumnIndex !== columnIndex) {
16955
+ return initialPosition;
16956
+ }
16957
+ return position;
16958
+ }, [position, pressedColumnIndex]);
16959
+ return {
16960
+ pointer,
16961
+ setPointer,
16962
+ getIsPressed,
16963
+ setIsPressed,
16964
+ getPosition,
16965
+ setPosition,
16966
+ lastPressedTimestamp
16967
+ };
16968
+ };
16969
+ const DOUBLE_CLICK_THRESHOLD_MSEC = 300;
16933
16970
  const ResizeSpan = styled.styled.div.withConfig({
16934
16971
  componentId: "sc-1r6e5v3-0"
16935
- })(["top:0;left:calc(100% - 4px);z-index:1;position:absolute;height:", "px;cursor:col-resize;width:4px;overflow:auto;&:hover,&:active,&:hover{background:", ";}", ""], ({
16972
+ })(["top:", ";left:", ";z-index:1;position:absolute;height:", "px;cursor:col-resize;width:4px;overflow:auto;&:hover,&:active,&:hover{background:", ";}", ""], initialPosition.top, initialPosition.left, ({
16936
16973
  $height
16937
16974
  }) => $height, ({
16938
16975
  theme: theme2
@@ -16946,67 +16983,87 @@ var __publicField = (obj, key, value) => {
16946
16983
  height,
16947
16984
  onColumnResize: onColumnResizeProp,
16948
16985
  columnIndex,
16949
- setResizeCursorPosition
16986
+ getResizerPosition,
16987
+ columnWidth,
16988
+ resizingState
16950
16989
  }) => {
16951
16990
  const resizeRef = React.useRef(null);
16952
- const pointerRef = React.useRef(null);
16953
- const [isPressed, setIsPressed] = React.useState(false);
16991
+ const {
16992
+ pointer,
16993
+ setPointer,
16994
+ getIsPressed,
16995
+ setIsPressed,
16996
+ getPosition,
16997
+ setPosition,
16998
+ lastPressedTimestamp
16999
+ } = resizingState;
17000
+ const isPressed = getIsPressed(columnIndex);
17001
+ const position = getPosition(columnIndex);
16954
17002
  const onColumnResize = throttle$2(onColumnResizeProp, 1e3);
16955
- const onMouseDown = React.useCallback((e) => {
16956
- e.preventDefault();
16957
- e.stopPropagation();
16958
- setIsPressed(true);
16959
- if (e.detail > 1) {
16960
- onColumnResize(columnIndex, 0, "auto");
17003
+ React.useEffect(() => {
17004
+ const control = resizeRef.current;
17005
+ if (!isPressed || !control || !pointer) {
17006
+ return;
16961
17007
  }
16962
- }, [columnIndex, onColumnResize, setIsPressed]);
16963
- const onMouseUp = React.useCallback((e) => {
16964
- e.stopPropagation();
16965
- setIsPressed(false);
16966
- }, [setIsPressed]);
17008
+ const pointerId = pointer.pointerId;
17009
+ try {
17010
+ control.setPointerCapture(pointerId);
17011
+ return () => {
17012
+ if (control.hasPointerCapture(pointerId)) {
17013
+ control.releasePointerCapture(pointerId);
17014
+ }
17015
+ };
17016
+ } catch (e) {
17017
+ console.error(e);
17018
+ }
17019
+ }, [pointer, isPressed, columnIndex]);
16967
17020
  const onPointerDown = React.useCallback((e) => {
16968
17021
  e.stopPropagation();
17022
+ e.preventDefault();
16969
17023
  if (resizeRef.current) {
16970
- resizeRef.current.setPointerCapture(e.pointerId);
16971
- const header = resizeRef.current.closest(`[data-header="${columnIndex}"]`);
16972
- if (header) {
16973
- pointerRef.current = {
16974
- pointerId: e.pointerId,
16975
- initialClientX: e.clientX,
16976
- width: header.clientWidth
16977
- };
16978
- setResizeCursorPosition(resizeRef.current, e.clientX, header.clientWidth, columnIndex);
17024
+ if (lastPressedTimestamp > Date.now() - DOUBLE_CLICK_THRESHOLD_MSEC) {
17025
+ onColumnResize(columnIndex, 0, "auto");
16979
17026
  }
17027
+ setPointer({
17028
+ pointerId: e.pointerId,
17029
+ initialClientX: e.clientX,
17030
+ width: columnWidth
17031
+ });
17032
+ setIsPressed(columnIndex, true);
17033
+ const pos = getResizerPosition(e.clientX, columnWidth, columnIndex);
17034
+ setPosition(pos);
16980
17035
  }
16981
- }, [columnIndex, setResizeCursorPosition]);
16982
- const onMouseMove = React.useCallback((e) => {
17036
+ }, [lastPressedTimestamp, setPointer, columnWidth, setIsPressed, columnIndex, getResizerPosition, setPosition, onColumnResize]);
17037
+ const onPointerMove = React.useCallback((e) => {
16983
17038
  e.stopPropagation();
16984
- if (resizeRef.current && pointerRef.current) {
16985
- const header = resizeRef.current.closest(`[data-header="${columnIndex}"]`);
16986
- if (header) {
16987
- resizeRef.current.setPointerCapture(pointerRef.current.pointerId);
16988
- const width = header.clientWidth + (e.clientX - pointerRef.current.initialClientX);
16989
- setResizeCursorPosition(resizeRef.current, e.clientX, width, columnIndex);
16990
- pointerRef.current.width = Math.max(width, 50);
16991
- }
17039
+ e.preventDefault();
17040
+ if (isPressed && pointer) {
17041
+ const width = columnWidth + (e.clientX - pointer.initialClientX);
17042
+ const pos = getResizerPosition(e.clientX, width, columnIndex);
17043
+ setPosition(pos);
17044
+ pointer.width = Math.max(width, 50);
16992
17045
  }
16993
- }, [columnIndex, setResizeCursorPosition]);
17046
+ }, [pointer, isPressed, columnWidth, getResizerPosition, columnIndex, setPosition]);
16994
17047
  return /* @__PURE__ */ jsxRuntime.jsx(ResizeSpan, { ref: resizeRef, $height: height, $isPressed: isPressed, onPointerDown, onPointerUp: (e) => {
16995
- var _a, _b;
16996
17048
  e.preventDefault();
16997
17049
  e.stopPropagation();
16998
17050
  if (resizeRef.current && // 0 is a valid pointerId in Firefox
16999
- (((_a = pointerRef.current) == null ? void 0 : _a.pointerId) || ((_b = pointerRef.current) == null ? void 0 : _b.pointerId) === 0)) {
17000
- resizeRef.current.releasePointerCapture(pointerRef.current.pointerId);
17001
- const shouldCallResize = e.clientX !== pointerRef.current.initialClientX;
17051
+ ((pointer == null ? void 0 : pointer.pointerId) || (pointer == null ? void 0 : pointer.pointerId) === 0)) {
17052
+ const shouldCallResize = e.clientX !== pointer.initialClientX;
17002
17053
  if (shouldCallResize) {
17003
- onColumnResize(columnIndex, pointerRef.current.width, "manual");
17054
+ onColumnResize(columnIndex, pointer.width, "manual");
17004
17055
  }
17005
- resizeRef.current.style.top = "0";
17006
- resizeRef.current.style.left = "calc(100% - 4px)";
17007
- pointerRef.current = null;
17056
+ setPosition(initialPosition);
17057
+ setPointer(null);
17058
+ setIsPressed(columnIndex, false);
17008
17059
  }
17009
- }, onMouseMove, onMouseDown, onClick: (e) => e.stopPropagation(), onMouseUp, "data-resize": true });
17060
+ }, onPointerMove, onPointerCancel: (e) => {
17061
+ e.preventDefault();
17062
+ e.stopPropagation();
17063
+ setPosition(initialPosition);
17064
+ setPointer(null);
17065
+ setIsPressed(columnIndex, false);
17066
+ }, onClick: (e) => e.stopPropagation(), "data-resize": true, style: position });
17010
17067
  };
17011
17068
  const HeaderContainer = styled.styled.div.withConfig({
17012
17069
  componentId: "sc-1oadqc8-0"
@@ -17046,15 +17103,16 @@ var __publicField = (obj, key, value) => {
17046
17103
  const Column = ({
17047
17104
  columnIndex,
17048
17105
  cell,
17049
- columnWidth,
17106
+ getColumnWidth,
17050
17107
  getColumnHorizontalPosition,
17051
17108
  getSelectionType,
17052
17109
  isFirstColumn,
17053
17110
  isLastColumn,
17054
17111
  onColumnResize,
17055
17112
  height,
17056
- setResizeCursorPosition,
17057
- showBorder
17113
+ getResizerPosition,
17114
+ showBorder,
17115
+ resizingState
17058
17116
  }) => {
17059
17117
  const selectionType = getSelectionType({
17060
17118
  column: columnIndex,
@@ -17067,9 +17125,10 @@ var __publicField = (obj, key, value) => {
17067
17125
  const columnPosition = getColumnHorizontalPosition(columnIndex);
17068
17126
  const isSelected = selectionType === "selectDirect";
17069
17127
  const isSelectedLeft = (leftSelectionType === "selectDirect" || isSelected) && leftSelectionType !== selectionType;
17070
- return /* @__PURE__ */ jsxRuntime.jsxs(HeaderCellContainer, { $width: columnWidth(columnIndex), $columnPosition: columnPosition, $height: height, "data-header": columnIndex, children: [
17071
- /* @__PURE__ */ jsxRuntime.jsx(StyledCell, { $type: "header", as: cell, columnIndex, type: "header-cell", $isFirstColumn: isFirstColumn, $selectionType: selectionType, $isLastColumn: isLastColumn, $isFocused: false, $isSelectedLeft: isSelectedLeft, $isSelectedTop: isSelected, $isLastRow: false, $isFirstRow: true, $height: height, "data-grid-row": -1, "data-grid-column": columnIndex, "data-selected": isSelected, $showBorder: showBorder, width: columnWidth(columnIndex) }),
17072
- /* @__PURE__ */ jsxRuntime.jsx(ColumnResizer, { height, onColumnResize, columnIndex, setResizeCursorPosition })
17128
+ const columnWidth = getColumnWidth(columnIndex);
17129
+ return /* @__PURE__ */ jsxRuntime.jsxs(HeaderCellContainer, { $width: columnWidth, $columnPosition: columnPosition, $height: height, "data-header": columnIndex, children: [
17130
+ /* @__PURE__ */ jsxRuntime.jsx(StyledCell, { $type: "header", as: cell, columnIndex, type: "header-cell", $isFirstColumn: isFirstColumn, $selectionType: selectionType, $isLastColumn: isLastColumn, $isFocused: false, $isSelectedLeft: isSelectedLeft, $isSelectedTop: isSelected, $isLastRow: false, $isFirstRow: true, $height: height, "data-grid-row": -1, "data-grid-column": columnIndex, "data-selected": isSelected, $showBorder: showBorder, width: columnWidth }),
17131
+ /* @__PURE__ */ jsxRuntime.jsx(ColumnResizer, { height, onColumnResize, columnIndex, getResizerPosition, columnWidth, resizingState })
17073
17132
  ] });
17074
17133
  };
17075
17134
  const Header = ({
@@ -17080,14 +17139,15 @@ var __publicField = (obj, key, value) => {
17080
17139
  minColumn,
17081
17140
  maxColumn,
17082
17141
  height,
17083
- columnWidth,
17142
+ getColumnWidth,
17084
17143
  cell,
17085
17144
  columnCount,
17086
17145
  getSelectionType,
17087
17146
  onColumnResize,
17088
17147
  getColumnHorizontalPosition,
17089
- setResizeCursorPosition,
17090
- showBorder
17148
+ getResizerPosition,
17149
+ showBorder,
17150
+ resizingState
17091
17151
  }) => {
17092
17152
  const selectedAllType = getSelectionType({
17093
17153
  type: "all"
@@ -17095,7 +17155,7 @@ var __publicField = (obj, key, value) => {
17095
17155
  return /* @__PURE__ */ jsxRuntime.jsxs(HeaderContainer, { $height: height, $scrolledVertical: scrolledVertical, children: [
17096
17156
  /* @__PURE__ */ jsxRuntime.jsx(ScrollableHeaderContainer, { $left: rowNumberWidth, children: Array.from({
17097
17157
  length: maxColumn - minColumn + 1
17098
- }, (_, index2) => minColumn + index2).map((columnIndex) => /* @__PURE__ */ jsxRuntime.jsx(Column, { getSelectionType, columnIndex, columnWidth, getColumnHorizontalPosition, cell, isFirstColumn: columnIndex === 0 && !showRowNumber, isLastColumn: columnIndex + 1 === columnCount, onColumnResize, height, setResizeCursorPosition, showBorder }, `header-${columnIndex}`)) }),
17158
+ }, (_, index2) => minColumn + index2).map((columnIndex) => /* @__PURE__ */ jsxRuntime.jsx(Column, { getSelectionType, columnIndex, getColumnWidth, getColumnHorizontalPosition, cell, isFirstColumn: columnIndex === 0 && !showRowNumber, isLastColumn: columnIndex + 1 === columnCount, onColumnResize, height, getResizerPosition, showBorder, resizingState }, `header-${columnIndex}`)) }),
17099
17159
  showRowNumber && /* @__PURE__ */ jsxRuntime.jsx(RowColumnContainer, { $width: rowNumberWidth, $height: height, $columnPosition: 0, $scrolledHorizontal: scrolledHorizontal, children: /* @__PURE__ */ jsxRuntime.jsx(RowColumn, { "data-selected": selectedAllType === "selectDirect", $type: "header", $isFirstRow: true, $isFirstColumn: true, $selectionType: selectedAllType, $isLastRow: false, $isLastColumn: false, $height: height, $isFocused: false, $isSelectedLeft: false, $isSelectedTop: false, "data-grid-row": -1, "data-grid-column": -1, $showBorder: showBorder, children: "#" }) })
17100
17160
  ] });
17101
17161
  };
@@ -31774,6 +31834,7 @@ var __publicField = (obj, key, value) => {
31774
31834
  onSelectProp(action, selection2, focus2);
31775
31835
  }
31776
31836
  }, [onSelectProp]);
31837
+ const resizingState = useResizingState();
31777
31838
  const onFocusChange = React.useCallback((row, column) => {
31778
31839
  setFocus((focus2) => ({
31779
31840
  row: row ?? (focusProp == null ? void 0 : focusProp.row) ?? focus2.row,
@@ -31847,11 +31908,14 @@ var __publicField = (obj, key, value) => {
31847
31908
  }
31848
31909
  return columnLeft + rowNumberWidth - 4;
31849
31910
  }, [getColumnHorizontalPosition, rowNumberWidth]);
31850
- const setResizeCursorPosition = React.useCallback((element, clientX, width, columnIndex) => {
31851
- element.style.left = `${getFixedResizerLeftPosition(clientX, width, columnIndex)}px`;
31911
+ const getResizerPosition = React.useCallback((clientX, width, columnIndex) => {
31912
+ const result = {
31913
+ left: `${getFixedResizerLeftPosition(clientX, width, columnIndex)}px`
31914
+ };
31852
31915
  if (outerRef.current) {
31853
- element.style.top = `${outerRef.current.scrollTop}px`;
31916
+ result.top = `${outerRef.current.scrollTop}px`;
31854
31917
  }
31918
+ return result;
31855
31919
  }, [getFixedResizerLeftPosition]);
31856
31920
  const clearSelectionAndFocus = React.useCallback((force) => {
31857
31921
  setSelection((selection2) => {
@@ -31906,7 +31970,7 @@ var __publicField = (obj, key, value) => {
31906
31970
  return /* @__PURE__ */ jsxRuntime.jsxs(GridContainer, { ...containerProps, className: `sticky-grid__container grid-outer ${props.className ?? ""}`, children: [
31907
31971
  /* @__PURE__ */ jsxRuntime.jsx(GridDataContainer, { $top: showHeader ? headerHeight : 0, $left: showRowNumber ? rowNumberWidth : 0, ref, children }),
31908
31972
  showRowNumber && /* @__PURE__ */ jsxRuntime.jsx(RowNumberColumn, { scrolledHorizontal, minRow, maxRow, rowHeight, headerHeight, rowWidth: rowNumberWidth, rowCount, getSelectionType, showHeader, rowStart, showBorder }),
31909
- showHeader && /* @__PURE__ */ jsxRuntime.jsx(Header, { scrolledVertical, scrolledHorizontal, showRowNumber, minColumn, maxColumn, height: headerHeight, columnWidth, cell, rowNumberWidth, getSelectionType, columnCount, onColumnResize, getColumnHorizontalPosition, setResizeCursorPosition, showBorder })
31973
+ showHeader && /* @__PURE__ */ jsxRuntime.jsx(Header, { scrolledVertical, scrolledHorizontal, showRowNumber, minColumn, maxColumn, height: headerHeight, getColumnWidth: columnWidth, cell, rowNumberWidth, getSelectionType, columnCount, onColumnResize, getColumnHorizontalPosition, getResizerPosition, showBorder, resizingState })
31910
31974
  ] });
31911
31975
  });
31912
31976
  React.useEffect(() => {
@@ -41089,19 +41153,19 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41089
41153
  },
41090
41154
  info: {
41091
41155
  background: {
41092
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
41093
- hover: "#b5cdf9",
41094
- active: "#91b3f6"
41156
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
41157
+ hover: "#D0DFFB",
41158
+ active: "#A1BEF7"
41095
41159
  },
41096
41160
  text: {
41097
- "default": "#135be6",
41098
- hover: "#135be6",
41099
- active: "#135be6"
41161
+ "default": "#437EEF",
41162
+ hover: "#437EEF",
41163
+ active: "#437EEF"
41100
41164
  },
41101
41165
  stroke: {
41102
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
41103
- hover: "#b5cdf9",
41104
- active: "#91b3f6"
41166
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
41167
+ hover: "#D0DFFB",
41168
+ active: "#A1BEF7"
41105
41169
  }
41106
41170
  }
41107
41171
  }
@@ -41757,12 +41821,32 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41757
41821
  chart: {
41758
41822
  bars: {
41759
41823
  color: {
41760
- green: "#00FF15",
41761
- blue: "#6c9af3",
41762
- fuchsia: "#FB64D6",
41763
- orange: "#ffb864",
41764
- violet: "#CC66FF",
41765
- teal: "#00CCAA"
41824
+ blue: "#437EEF",
41825
+ orange: "#FF7729",
41826
+ green: "#00E513",
41827
+ fuchsia: "#FB32C9",
41828
+ yellow: "#eef400",
41829
+ violet: "#BB33FF",
41830
+ babyblue: "#00CBEB",
41831
+ red: "#ff2323",
41832
+ teal: "#089B83",
41833
+ sunrise: "#FFC300",
41834
+ slate: "#9a9ea7"
41835
+ }
41836
+ },
41837
+ color: {
41838
+ "default": {
41839
+ blue: "#437EEF",
41840
+ orange: "#FF7729",
41841
+ green: "#00E513",
41842
+ fuchsia: "#FB32C9",
41843
+ yellow: "#eef400",
41844
+ violet: "#BB33FF",
41845
+ babyblue: "#00CBEB",
41846
+ red: "#ff2323",
41847
+ teal: "#089B83",
41848
+ sunrise: "#FFC300",
41849
+ slate: "#9a9ea7"
41766
41850
  }
41767
41851
  }
41768
41852
  }
@@ -41801,16 +41885,16 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41801
41885
  },
41802
41886
  feedback: {
41803
41887
  info: {
41804
- background: "#dae6fc",
41805
- foreground: "#135be6"
41888
+ background: "#E7EFFD",
41889
+ foreground: "#437EEF"
41806
41890
  },
41807
41891
  success: {
41808
41892
  background: "#E5FFE8",
41809
- foreground: "#00990D"
41893
+ foreground: "#008A0B"
41810
41894
  },
41811
41895
  warning: {
41812
- background: "#ffedd8",
41813
- foreground: "#9e5600"
41896
+ background: "#FFE2D1",
41897
+ foreground: "#A33C00"
41814
41898
  },
41815
41899
  danger: {
41816
41900
  background: "#ffdddd",
@@ -41824,12 +41908,30 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41824
41908
  },
41825
41909
  chart: {
41826
41910
  bars: {
41827
- green: "#00FF15",
41828
- blue: "#6c9af3",
41829
- fuchsia: "#FB64D6",
41830
- orange: "#ffb864",
41831
- violet: "#CC66FF",
41832
- teal: "#00CCAA"
41911
+ blue: "#437EEF",
41912
+ orange: "#FF7729",
41913
+ green: "#00E513",
41914
+ fuchsia: "#FB32C9",
41915
+ yellow: "#eef400",
41916
+ violet: "#BB33FF",
41917
+ babyblue: "#00CBEB",
41918
+ teal: "#089B83",
41919
+ sunrise: "#FFC300",
41920
+ slate: "#9a9ea7",
41921
+ red: "#ff2323"
41922
+ },
41923
+ "default": {
41924
+ blue: "#437EEF",
41925
+ orange: "#FF7729",
41926
+ green: "#00E513",
41927
+ fuchsia: "#FB32C9",
41928
+ yellow: "#eef400",
41929
+ violet: "#BB33FF",
41930
+ babyblue: "#00CBEB",
41931
+ teal: "#089B83",
41932
+ sunrise: "#FFC300",
41933
+ slate: "#9a9ea7",
41934
+ red: "#ff2323"
41833
41935
  }
41834
41936
  },
41835
41937
  iconButton: {
@@ -41870,12 +41972,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41870
41972
  link: {
41871
41973
  label: {
41872
41974
  "default": "#FAFF69",
41873
- hover: "#feffba",
41975
+ hover: "#FEFFC2",
41874
41976
  active: "#FAFF69"
41875
41977
  },
41876
41978
  icon: {
41877
41979
  "default": "#FAFF69",
41878
- hover: "rgb(99.6% 100% 75%)",
41980
+ hover: "rgb(99.6% 100% 77.9%)",
41879
41981
  active: "#FAFF69"
41880
41982
  }
41881
41983
  }
@@ -41888,32 +41990,32 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41888
41990
  success: "rgb(20% 100% 26.7% / 0.2)",
41889
41991
  neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
41890
41992
  danger: "rgb(100% 13.7% 13.7% / 0.2)",
41891
- warning: "rgb(100% 58% 8.63% / 0.2)",
41892
- info: "rgb(7.45% 35.7% 90.2% / 0.2)"
41993
+ warning: "rgb(100% 46.7% 16.1% / 0.2)",
41994
+ info: "rgb(26.3% 49.4% 93.7% / 0.2)"
41893
41995
  },
41894
41996
  text: {
41895
41997
  "default": "#b3b6bd",
41896
41998
  success: "#CCFFD0",
41897
41999
  neutral: "#c0c0c0",
41898
42000
  danger: "#ffbaba",
41899
- warning: "#ffca8b",
41900
- info: "#b5cdf9"
42001
+ warning: "#FFB88F",
42002
+ info: "#D0DFFB"
41901
42003
  },
41902
42004
  iconBackground: {
41903
42005
  "default": "#1F1F1C",
41904
42006
  success: "rgb(20% 100% 26.7% / 0)",
41905
42007
  neutral: "rgb(62.7% 62.7% 62.7% / 0)",
41906
42008
  danger: "rgb(100% 13.7% 13.7% / 0)",
41907
- warning: "rgb(100% 58% 8.63% / 0)",
41908
- info: "rgb(7.45% 35.7% 90.2% / 0)"
42009
+ warning: "rgb(100% 46.7% 16.1% / 0)",
42010
+ info: "rgb(26.3% 49.4% 93.7% / 0)"
41909
42011
  },
41910
42012
  iconForeground: {
41911
42013
  "default": "#b3b6bd",
41912
42014
  success: "lch(95.6 28.9 144 / 0.75)",
41913
42015
  neutral: "lch(77.7 0 0 / 0.75)",
41914
42016
  danger: "lch(82.1 27.7 22 / 0.75)",
41915
- warning: "lch(85.1 41.3 70.5 / 0.75)",
41916
- info: "lch(81.7 24.6 268 / 0.75)"
42017
+ warning: "lch(80.9 39 53.9 / 0.75)",
42018
+ info: "lch(88.3 15.5 266 / 0.75)"
41917
42019
  }
41918
42020
  }
41919
42021
  },
@@ -41939,8 +42041,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41939
42041
  neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
41940
42042
  danger: "rgb(100% 13.7% 13.7% / 0.2)",
41941
42043
  disabled: "#414141",
41942
- info: "rgb(7.45% 35.7% 90.2% / 0.2)",
41943
- warning: "rgb(100% 58% 8.63% / 0.2)"
42044
+ info: "rgb(26.3% 49.4% 93.7% / 0.2)",
42045
+ warning: "rgb(100% 46.7% 16.1% / 0.2)"
41944
42046
  },
41945
42047
  text: {
41946
42048
  "default": "#b3b6bd",
@@ -41948,8 +42050,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41948
42050
  neutral: "#c0c0c0",
41949
42051
  danger: "#ffbaba",
41950
42052
  disabled: "#808080",
41951
- info: "#b5cdf9",
41952
- warning: "#ffca8b"
42053
+ info: "#D0DFFB",
42054
+ warning: "#FFB88F"
41953
42055
  },
41954
42056
  stroke: {
41955
42057
  "default": "#323232",
@@ -41957,8 +42059,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41957
42059
  neutral: "rgb(62.7% 62.7% 62.7% / 0.1)",
41958
42060
  danger: "rgb(100% 22.3% 22.3% / 0.2)",
41959
42061
  disabled: "rgb(24.2% 24.2% 24.2%)",
41960
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
41961
- warning: "rgb(100% 58% 8.63% / 0.1)"
42062
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
42063
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
41962
42064
  }
41963
42065
  }
41964
42066
  },
@@ -42048,7 +42150,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42048
42150
  empty: {
42049
42151
  text: {
42050
42152
  "default": "#FAFF69",
42051
- hover: "#feffba",
42153
+ hover: "#FEFFC2",
42052
42154
  active: "#FAFF69",
42053
42155
  disabled: "#a0a0a0"
42054
42156
  },
@@ -42147,19 +42249,19 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42147
42249
  },
42148
42250
  info: {
42149
42251
  background: {
42150
- "default": "rgb(7.45% 35.7% 90.2% / 0.2)",
42151
- hover: "#0e44ad",
42152
- active: "#135be6"
42252
+ "default": "rgb(26.3% 49.4% 93.7% / 0.2)",
42253
+ hover: "#1D64EC",
42254
+ active: "#437EEF"
42153
42255
  },
42154
42256
  text: {
42155
- "default": "#b5cdf9",
42156
- hover: "#b5cdf9",
42157
- active: "#b5cdf9"
42257
+ "default": "#D0DFFB",
42258
+ hover: "#D0DFFB",
42259
+ active: "#D0DFFB"
42158
42260
  },
42159
42261
  stroke: {
42160
- "default": "rgb(7.45% 35.7% 90.2% / 0.2)",
42161
- hover: "#0e44ad",
42162
- active: "#135be6"
42262
+ "default": "rgb(26.3% 49.4% 93.7% / 0.2)",
42263
+ hover: "#1D64EC",
42264
+ active: "#437EEF"
42163
42265
  }
42164
42266
  }
42165
42267
  }
@@ -42467,11 +42569,11 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42467
42569
  background: {
42468
42570
  "default": "rgb(17.8% 17.8% 17.8%)",
42469
42571
  hover: "rgb(17.8% 17.8% 17.8%)",
42470
- active: "#66FF73",
42572
+ active: "#33FF44",
42471
42573
  disabled: "rgb(17.8% 17.8% 17.8%)"
42472
42574
  },
42473
42575
  stroke: {
42474
- "default": "#00CC11",
42576
+ "default": "#00BD10",
42475
42577
  hover: "#66FF73",
42476
42578
  active: "#66FF73",
42477
42579
  disabled: "#606060"
@@ -42487,13 +42589,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42487
42589
  background: {
42488
42590
  "default": "rgb(17.8% 17.8% 17.8%)",
42489
42591
  hover: "rgb(17.8% 17.8% 17.8%)",
42490
- active: "#6c9af3",
42592
+ active: "#437EEF",
42491
42593
  disabled: "rgb(17.8% 17.8% 17.8%)"
42492
42594
  },
42493
42595
  stroke: {
42494
- "default": "#6c9af3",
42495
- hover: "#91b3f6",
42496
- active: "#91b3f6",
42596
+ "default": "#6D9BF3",
42597
+ hover: "#A1BEF7",
42598
+ active: "#A1BEF7",
42497
42599
  disabled: "#606060"
42498
42600
  },
42499
42601
  check: {
@@ -42527,7 +42629,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42527
42629
  background: {
42528
42630
  "default": "rgb(17.8% 17.8% 17.8%)",
42529
42631
  hover: "rgb(17.8% 17.8% 17.8%)",
42530
- active: "#FAFF69",
42632
+ active: "#FF7729",
42531
42633
  disabled: "rgb(17.8% 17.8% 17.8%)"
42532
42634
  },
42533
42635
  stroke: {
@@ -42547,13 +42649,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42547
42649
  background: {
42548
42650
  "default": "rgb(17.8% 17.8% 17.8%)",
42549
42651
  hover: "rgb(17.8% 17.8% 17.8%)",
42550
- active: "#66FFE5",
42652
+ active: "#6DF8E1",
42551
42653
  disabled: "rgb(17.8% 17.8% 17.8%)"
42552
42654
  },
42553
42655
  stroke: {
42554
- "default": "#66FFE5",
42555
- hover: "#99FFEE",
42556
- active: "#99FFEE",
42656
+ "default": "#6DF8E1",
42657
+ hover: "#A3FAEC",
42658
+ active: "#A3FAEC",
42557
42659
  disabled: "#606060"
42558
42660
  },
42559
42661
  check: {
@@ -43207,7 +43309,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43207
43309
  icon: {
43208
43310
  "default": "rgb(97.5% 97.5% 97.5%)",
43209
43311
  success: "#CCFFD0",
43210
- warning: "#ffca8b",
43312
+ warning: "#FFB88F",
43211
43313
  danger: "#ffbaba"
43212
43314
  }
43213
43315
  }
@@ -43318,24 +43420,24 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43318
43420
  success: "rgb(20% 100% 26.7% / 0.2)",
43319
43421
  neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
43320
43422
  danger: "rgb(100% 13.7% 13.7% / 0.2)",
43321
- info: "rgb(7.45% 35.7% 90.2% / 0.2)",
43322
- warning: "rgb(100% 58% 8.63% / 0.2)"
43423
+ info: "rgb(26.3% 49.4% 93.7% / 0.2)",
43424
+ warning: "rgb(100% 46.7% 16.1% / 0.2)"
43323
43425
  },
43324
43426
  text: {
43325
43427
  "default": "rgba(0,0,0,0)",
43326
43428
  success: "#CCFFD0",
43327
43429
  neutral: "#c0c0c0",
43328
43430
  danger: "#ffbaba",
43329
- info: "#b5cdf9",
43330
- warning: "#ffca8b"
43431
+ info: "#D0DFFB",
43432
+ warning: "#FFB88F"
43331
43433
  },
43332
43434
  stroke: {
43333
43435
  "default": "rgba(0,0,0,0)",
43334
43436
  success: "rgb(20% 100% 26.7% / 0.05)",
43335
43437
  neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
43336
43438
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
43337
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
43338
- warning: "rgb(100% 58% 8.63% / 0.05)"
43439
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
43440
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
43339
43441
  }
43340
43442
  }
43341
43443
  },
@@ -43385,7 +43487,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43385
43487
  muted: "#b3b6bd",
43386
43488
  link: {
43387
43489
  "default": "#FAFF69",
43388
- hover: "#feffba"
43490
+ hover: "#FEFFC2"
43389
43491
  },
43390
43492
  danger: "#ffbaba"
43391
43493
  },
@@ -43412,16 +43514,16 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43412
43514
  feedback: {
43413
43515
  color: {
43414
43516
  info: {
43415
- background: "rgb(7.45% 35.7% 90.2% / 0.2)",
43416
- foreground: "#b5cdf9"
43517
+ background: "rgb(26.3% 49.4% 93.7% / 0.2)",
43518
+ foreground: "#D0DFFB"
43417
43519
  },
43418
43520
  success: {
43419
43521
  background: "rgb(20% 100% 26.7% / 0.2)",
43420
43522
  foreground: "#CCFFD0"
43421
43523
  },
43422
43524
  warning: {
43423
- background: "rgb(100% 58% 8.63% / 0.2)",
43424
- foreground: "#ffca8b"
43525
+ background: "rgb(100% 46.7% 16.1% / 0.2)",
43526
+ foreground: "#FFB88F"
43425
43527
  },
43426
43528
  danger: {
43427
43529
  background: "rgb(100% 13.7% 13.7% / 0.2)",
@@ -43442,12 +43544,32 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43442
43544
  chart: {
43443
43545
  bars: {
43444
43546
  color: {
43445
- green: "#66FF73",
43446
- blue: "#6c9af3",
43547
+ blue: "#437EEF",
43548
+ orange: "#FF7729",
43549
+ green: "#33FF44",
43550
+ fuchsia: "#FB64D6",
43551
+ yellow: "#eef400",
43552
+ violet: "#BB33FF",
43553
+ babyblue: "#00CBEB",
43554
+ red: "#ff2323",
43555
+ teal: "#6DF8E1",
43556
+ sunrise: "#FFC300",
43557
+ slate: "#9a9ea7"
43558
+ }
43559
+ },
43560
+ color: {
43561
+ "default": {
43562
+ blue: "#437EEF",
43563
+ orange: "#FF7729",
43564
+ green: "#33FF44",
43447
43565
  fuchsia: "#FB64D6",
43448
- orange: "#FAFF69",
43566
+ yellow: "#eef400",
43449
43567
  violet: "#BB33FF",
43450
- teal: "#66FFE5"
43568
+ babyblue: "#00CBEB",
43569
+ red: "#ff2323",
43570
+ teal: "#6DF8E1",
43571
+ sunrise: "#FFC300",
43572
+ slate: "#9a9ea7"
43451
43573
  }
43452
43574
  }
43453
43575
  }
@@ -43466,7 +43588,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43466
43588
  muted: "#b3b6bd",
43467
43589
  link: {
43468
43590
  "default": "#FAFF69",
43469
- hover: "#feffba"
43591
+ hover: "#FEFFC2"
43470
43592
  }
43471
43593
  },
43472
43594
  stroke: {
@@ -43486,16 +43608,16 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43486
43608
  },
43487
43609
  feedback: {
43488
43610
  info: {
43489
- background: "#09255B",
43490
- foreground: "#b5cdf9"
43611
+ background: "#0D3E9B",
43612
+ foreground: "#D0DFFB"
43491
43613
  },
43492
43614
  success: {
43493
43615
  background: "#004206",
43494
43616
  foreground: "#CCFFD0"
43495
43617
  },
43496
43618
  warning: {
43497
- background: "#4f2b00",
43498
- foreground: "#ffca8b"
43619
+ background: "#7A2D00",
43620
+ foreground: "#FFB88F"
43499
43621
  },
43500
43622
  danger: {
43501
43623
  background: "#610000",
@@ -43509,12 +43631,30 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43509
43631
  },
43510
43632
  chart: {
43511
43633
  bars: {
43512
- green: "#66FF73",
43513
- blue: "#6c9af3",
43634
+ blue: "#437EEF",
43635
+ orange: "#FF7729",
43636
+ green: "#33FF44",
43637
+ fuchsia: "#FB64D6",
43638
+ yellow: "#eef400",
43639
+ violet: "#BB33FF",
43640
+ babyblue: "#00CBEB",
43641
+ danger: "#ff2323",
43642
+ teal: "#6DF8E1",
43643
+ sunrise: "#FFC300",
43644
+ slate: "#9a9ea7"
43645
+ },
43646
+ "default": {
43647
+ blue: "#437EEF",
43648
+ orange: "#FF7729",
43649
+ green: "#33FF44",
43514
43650
  fuchsia: "#FB64D6",
43515
- orange: "#FAFF69",
43651
+ yellow: "#eef400",
43516
43652
  violet: "#BB33FF",
43517
- teal: "#66FFE5"
43653
+ babyblue: "#00CBEB",
43654
+ danger: "#ff2323",
43655
+ teal: "#6DF8E1",
43656
+ sunrise: "#FFC300",
43657
+ slate: "#9a9ea7"
43518
43658
  }
43519
43659
  },
43520
43660
  iconButton: {
@@ -43557,14 +43697,14 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43557
43697
  },
43558
43698
  link: {
43559
43699
  label: {
43560
- "default": "#135be6",
43561
- hover: "#092e73",
43562
- active: "#135be6"
43700
+ "default": "#437EEF",
43701
+ hover: "#104EC6",
43702
+ active: "#437EEF"
43563
43703
  },
43564
43704
  icon: {
43565
- "default": "#135be6",
43566
- hover: "lch(26.3 42.1 284)",
43567
- active: "#135be6"
43705
+ "default": "#437EEF",
43706
+ hover: "lch(40.8 66.4 286)",
43707
+ active: "#437EEF"
43568
43708
  }
43569
43709
  }
43570
43710
  }
@@ -43576,32 +43716,32 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43576
43716
  success: "rgb(20% 100% 26.7% / 0.1)",
43577
43717
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43578
43718
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
43579
- warning: "rgb(100% 58% 8.63% / 0.1)",
43580
- info: "rgb(7.45% 35.7% 90.2% / 0.1)"
43719
+ warning: "rgb(100% 46.7% 16.1% / 0.1)",
43720
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)"
43581
43721
  },
43582
43722
  text: {
43583
43723
  "default": "#696e79",
43584
- success: "#00990D",
43724
+ success: "#008A0B",
43585
43725
  neutral: "#53575f",
43586
43726
  danger: "#c10000",
43587
- warning: "#9e5600",
43588
- info: "#135be6"
43727
+ warning: "#A33C00",
43728
+ info: "#437EEF"
43589
43729
  },
43590
43730
  iconBackground: {
43591
43731
  "default": "#ffffff",
43592
43732
  success: "rgb(20% 100% 26.7% / 0)",
43593
43733
  neutral: "rgb(41.2% 43.1% 47.5% / 0)",
43594
43734
  danger: "rgb(100% 13.7% 13.7% / 0)",
43595
- warning: "rgb(100% 58% 8.63% / 0)",
43596
- info: "rgb(7.45% 35.7% 90.2% / 0)"
43735
+ warning: "rgb(100% 46.7% 16.1% / 0)",
43736
+ info: "rgb(26.3% 49.4% 93.7% / 0)"
43597
43737
  },
43598
43738
  iconForeground: {
43599
43739
  "default": "#696e79",
43600
- success: "lch(54.9 75.8 135 / 0.75)",
43740
+ success: "lch(49.8 70.2 135 / 0.75)",
43601
43741
  neutral: "lch(36.8 5.23 267 / 0.75)",
43602
43742
  danger: "lch(41 86.6 40.9 / 0.75)",
43603
- warning: "lch(44.6 59.8 63.2 / 0.75)",
43604
- info: "lch(41.9 80.9 287 / 0.75)"
43743
+ warning: "lch(40.2 66.6 51.1 / 0.75)",
43744
+ info: "lch(53.4 64.6 279 / 0.75)"
43605
43745
  }
43606
43746
  }
43607
43747
  },
@@ -43627,17 +43767,17 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43627
43767
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43628
43768
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
43629
43769
  disabled: "#dfdfdf",
43630
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
43631
- warning: "rgb(100% 58% 8.63% / 0.1)"
43770
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
43771
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
43632
43772
  },
43633
43773
  text: {
43634
43774
  "default": "#696e79",
43635
- success: "#00990D",
43775
+ success: "#008A0B",
43636
43776
  neutral: "#53575f",
43637
43777
  danger: "#c10000",
43638
43778
  disabled: "#a0a0a0",
43639
- info: "#135be6",
43640
- warning: "#9e5600"
43779
+ info: "#437EEF",
43780
+ warning: "#A33C00"
43641
43781
  },
43642
43782
  stroke: {
43643
43783
  "default": "#e6e7e9",
@@ -43645,8 +43785,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43645
43785
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43646
43786
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
43647
43787
  disabled: "rgb(83.1% 83.1% 83.1%)",
43648
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
43649
- warning: "rgb(100% 58% 8.63% / 0.05)"
43788
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
43789
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
43650
43790
  }
43651
43791
  }
43652
43792
  },
@@ -43735,9 +43875,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43735
43875
  },
43736
43876
  empty: {
43737
43877
  text: {
43738
- "default": "#135be6",
43739
- hover: "#092e73",
43740
- active: "#135be6",
43878
+ "default": "#437EEF",
43879
+ hover: "#104EC6",
43880
+ active: "#437EEF",
43741
43881
  disabled: "#a0a0a0"
43742
43882
  },
43743
43883
  background: {
@@ -43835,19 +43975,19 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43835
43975
  },
43836
43976
  info: {
43837
43977
  background: {
43838
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
43839
- hover: "#b5cdf9",
43840
- active: "#91b3f6"
43978
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
43979
+ hover: "#D0DFFB",
43980
+ active: "#A1BEF7"
43841
43981
  },
43842
43982
  text: {
43843
- "default": "#135be6",
43844
- hover: "#135be6",
43845
- active: "#135be6"
43983
+ "default": "#437EEF",
43984
+ hover: "#437EEF",
43985
+ active: "#437EEF"
43846
43986
  },
43847
43987
  stroke: {
43848
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
43849
- hover: "#b5cdf9",
43850
- active: "#91b3f6"
43988
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
43989
+ hover: "#D0DFFB",
43990
+ active: "#A1BEF7"
43851
43991
  }
43852
43992
  }
43853
43993
  }
@@ -43998,7 +44138,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43998
44138
  },
43999
44139
  link: {
44000
44140
  "default": "#161517",
44001
- hover: "#135be6",
44141
+ hover: "#437EEF",
44002
44142
  active: "#161517",
44003
44143
  disabled: "#a0a0a0"
44004
44144
  },
@@ -44149,7 +44289,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44149
44289
  background: {
44150
44290
  "default": "#f6f7fa",
44151
44291
  hover: "#f6f7fa",
44152
- active: "#62de85",
44292
+ active: "#00E513",
44153
44293
  disabled: "#dfdfdf"
44154
44294
  },
44155
44295
  stroke: {
@@ -44169,13 +44309,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44169
44309
  background: {
44170
44310
  "default": "#f6f7fa",
44171
44311
  hover: "#f6f7fa",
44172
- active: "#6c9af3",
44312
+ active: "#437EEF",
44173
44313
  disabled: "#dfdfdf"
44174
44314
  },
44175
44315
  stroke: {
44176
- "default": "#6c9af3",
44177
- hover: "#6c9af3",
44178
- active: "#6c9af3",
44316
+ "default": "#6D9BF3",
44317
+ hover: "#6D9BF3",
44318
+ active: "#6D9BF3",
44179
44319
  disabled: "#c0c0c0"
44180
44320
  },
44181
44321
  check: {
@@ -44189,7 +44329,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44189
44329
  background: {
44190
44330
  "default": "#f6f7fa",
44191
44331
  hover: "#f6f7fa",
44192
- active: "#FB64D6",
44332
+ active: "#FB32C9",
44193
44333
  disabled: "#dfdfdf"
44194
44334
  },
44195
44335
  stroke: {
@@ -44209,13 +44349,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44209
44349
  background: {
44210
44350
  "default": "#f6f7fa",
44211
44351
  hover: "#f6f7fa",
44212
- active: "#ffb864",
44352
+ active: "#FF7729",
44213
44353
  disabled: "#dfdfdf"
44214
44354
  },
44215
44355
  stroke: {
44216
- "default": "#ffb864",
44217
- hover: "#ffb864",
44218
- active: "#ffb864",
44356
+ "default": "#FF9457",
44357
+ hover: "#FF9457",
44358
+ active: "#FF9457",
44219
44359
  disabled: "#c0c0c0"
44220
44360
  },
44221
44361
  check: {
@@ -44229,13 +44369,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44229
44369
  background: {
44230
44370
  "default": "#f6f7fa",
44231
44371
  hover: "#f6f7fa",
44232
- active: "#00CCAA",
44372
+ active: "#089B83",
44233
44373
  disabled: "#dfdfdf"
44234
44374
  },
44235
44375
  stroke: {
44236
- "default": "#00CCAA",
44237
- hover: "#00CCAA",
44238
- active: "#00CCAA",
44376
+ "default": "#089B83",
44377
+ hover: "#089B83",
44378
+ active: "#089B83",
44239
44379
  disabled: "#c0c0c0"
44240
44380
  },
44241
44381
  check: {
@@ -44249,7 +44389,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44249
44389
  background: {
44250
44390
  "default": "#f6f7fa",
44251
44391
  hover: "#f6f7fa",
44252
- active: "#CC66FF",
44392
+ active: "#BB33FF",
44253
44393
  disabled: "#dfdfdf"
44254
44394
  },
44255
44395
  stroke: {
@@ -44772,7 +44912,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44772
44912
  background: {
44773
44913
  "default": "#f6f7fa",
44774
44914
  hover: "#f6f7fa",
44775
- active: "rgb(85% 89.5% 97.8%)"
44915
+ active: "rgb(89.8% 92.8% 98.1%)"
44776
44916
  },
44777
44917
  title: {
44778
44918
  "default": "#161517"
@@ -44794,8 +44934,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44794
44934
  color: {
44795
44935
  background: {
44796
44936
  "default": "#ffffff",
44797
- hover: "lch(90.9 12.2 266 / 0.2)",
44798
- active: "rgb(85.9% 90.4% 98.9% / 0.2)"
44937
+ hover: "lch(94.1 7.78 264 / 0.2)",
44938
+ active: "rgb(90.8% 93.8% 99.2% / 0.2)"
44799
44939
  },
44800
44940
  stroke: {
44801
44941
  "default": "#e6e7e9"
@@ -44804,7 +44944,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44804
44944
  "default": "#161517"
44805
44945
  },
44806
44946
  link: {
44807
- "default": "#135be6"
44947
+ "default": "#437EEF"
44808
44948
  },
44809
44949
  label: {
44810
44950
  "default": "#696e79"
@@ -44884,8 +45024,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44884
45024
  },
44885
45025
  icon: {
44886
45026
  "default": "lch(11.1 1.37 305)",
44887
- success: "#00990D",
44888
- warning: "#9e5600",
45027
+ success: "#008A0B",
45028
+ warning: "#A33C00",
44889
45029
  danger: "#c10000"
44890
45030
  }
44891
45031
  }
@@ -44938,8 +45078,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44938
45078
  color: {
44939
45079
  background: {
44940
45080
  "default": "#f6f7fa",
44941
- selectIndirect: "lch(93.2 9.14 266)",
44942
- selectDirect: "lch(90 12.1 266)"
45081
+ selectIndirect: "lch(95.6 5.84 264)",
45082
+ selectDirect: "lch(93.2 7.7 264)"
44943
45083
  },
44944
45084
  title: {
44945
45085
  "default": "#696e79",
@@ -44948,8 +45088,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44948
45088
  },
44949
45089
  stroke: {
44950
45090
  "default": "lch(89.3 1.07 266)",
44951
- selectIndirect: "lch(88.6 11.9 266)",
44952
- selectDirect: "lch(79.7 24 268)"
45091
+ selectIndirect: "lch(91.8 7.59 264)",
45092
+ selectDirect: "lch(86.1 15.1 266)"
44953
45093
  }
44954
45094
  }
44955
45095
  }
@@ -44959,13 +45099,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44959
45099
  color: {
44960
45100
  background: {
44961
45101
  "default": "#ffffff",
44962
- selectIndirect: "lch(90.9 12.2 266 / 0.2)",
44963
- selectDirect: "lch(90.9 12.2 266 / 0.2)"
45102
+ selectIndirect: "lch(94.1 7.78 264 / 0.2)",
45103
+ selectDirect: "lch(94.1 7.78 264 / 0.2)"
44964
45104
  },
44965
45105
  stroke: {
44966
45106
  "default": "#e6e7e9",
44967
- selectIndirect: "lch(65.4 19.7 268)",
44968
- selectDirect: "#135be6"
45107
+ selectIndirect: "lch(70.7 12.4 266)",
45108
+ selectDirect: "#437EEF"
44969
45109
  },
44970
45110
  text: {
44971
45111
  "default": "lch(7.17 1.44 305)",
@@ -44993,24 +45133,24 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
44993
45133
  success: "rgb(20% 100% 26.7% / 0.1)",
44994
45134
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
44995
45135
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
44996
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
44997
- warning: "rgb(100% 58% 8.63% / 0.1)"
45136
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
45137
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
44998
45138
  },
44999
45139
  text: {
45000
45140
  "default": "rgba(0,0,0,0)",
45001
- success: "#00990D",
45141
+ success: "#008A0B",
45002
45142
  neutral: "#53575f",
45003
45143
  danger: "#c10000",
45004
- info: "#135be6",
45005
- warning: "#9e5600"
45144
+ info: "#437EEF",
45145
+ warning: "#A33C00"
45006
45146
  },
45007
45147
  stroke: {
45008
45148
  "default": "rgba(0,0,0,0)",
45009
45149
  success: "rgb(20% 100% 26.7% / 0.05)",
45010
45150
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45011
45151
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
45012
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
45013
- warning: "rgb(100% 58% 8.63% / 0.05)"
45152
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
45153
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
45014
45154
  }
45015
45155
  }
45016
45156
  },
@@ -45059,8 +45199,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45059
45199
  "default": "#161517",
45060
45200
  muted: "#696e79",
45061
45201
  link: {
45062
- "default": "#135be6",
45063
- hover: "#092e73"
45202
+ "default": "#437EEF",
45203
+ hover: "#104EC6"
45064
45204
  },
45065
45205
  danger: "#c10000"
45066
45206
  },
@@ -45073,7 +45213,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45073
45213
  "default": "#151515"
45074
45214
  },
45075
45215
  outline: {
45076
- "default": "#135be6"
45216
+ "default": "#437EEF"
45077
45217
  },
45078
45218
  shadow: {
45079
45219
  "default": "lch(6.77 0 0 / 0.15)"
@@ -45087,16 +45227,16 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45087
45227
  feedback: {
45088
45228
  color: {
45089
45229
  info: {
45090
- background: "rgb(7.45% 35.7% 90.2% / 0.1)",
45091
- foreground: "#135be6"
45230
+ background: "rgb(26.3% 49.4% 93.7% / 0.1)",
45231
+ foreground: "#437EEF"
45092
45232
  },
45093
45233
  success: {
45094
45234
  background: "rgb(20% 100% 26.7% / 0.1)",
45095
- foreground: "#00990D"
45235
+ foreground: "#008A0B"
45096
45236
  },
45097
45237
  warning: {
45098
- background: "rgb(100% 58% 8.63% / 0.1)",
45099
- foreground: "#9e5600"
45238
+ background: "rgb(100% 46.7% 16.1% / 0.1)",
45239
+ foreground: "#A33C00"
45100
45240
  },
45101
45241
  danger: {
45102
45242
  background: "rgb(100% 13.7% 13.7% / 0.1)",
@@ -45117,12 +45257,32 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45117
45257
  chart: {
45118
45258
  bars: {
45119
45259
  color: {
45120
- green: "#62de85",
45121
- blue: "#6c9af3",
45122
- fuchsia: "#FB64D6",
45123
- orange: "#ffb864",
45124
- violet: "#CC66FF",
45125
- teal: "#00CCAA"
45260
+ blue: "#437EEF",
45261
+ orange: "#FF7729",
45262
+ green: "#00E513",
45263
+ fuchsia: "#FB32C9",
45264
+ yellow: "#eef400",
45265
+ violet: "#BB33FF",
45266
+ babyblue: "#00CBEB",
45267
+ red: "#ff2323",
45268
+ teal: "#089B83",
45269
+ sunrise: "#FFC300",
45270
+ slate: "#9a9ea7"
45271
+ }
45272
+ },
45273
+ color: {
45274
+ "default": {
45275
+ blue: "#437EEF",
45276
+ orange: "#FF7729",
45277
+ green: "#00E513",
45278
+ fuchsia: "#FB32C9",
45279
+ yellow: "#eef400",
45280
+ violet: "#BB33FF",
45281
+ babyblue: "#00CBEB",
45282
+ red: "#ff2323",
45283
+ teal: "#089B83",
45284
+ sunrise: "#FFC300",
45285
+ slate: "#9a9ea7"
45126
45286
  }
45127
45287
  }
45128
45288
  }
@@ -45141,8 +45301,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45141
45301
  "default": "#161517",
45142
45302
  muted: "#696e79",
45143
45303
  link: {
45144
- "default": "#135be6",
45145
- hover: "#092e73"
45304
+ "default": "#437EEF",
45305
+ hover: "#104EC6"
45146
45306
  }
45147
45307
  },
45148
45308
  stroke: {
@@ -45155,23 +45315,23 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45155
45315
  "default": "#151515"
45156
45316
  },
45157
45317
  outline: {
45158
- "default": "#135be6"
45318
+ "default": "#437EEF"
45159
45319
  },
45160
45320
  shadow: {
45161
45321
  "default": "lch(6.77 0 0 / 0.15)"
45162
45322
  },
45163
45323
  feedback: {
45164
45324
  info: {
45165
- background: "#dae6fc",
45166
- foreground: "#135be6"
45325
+ background: "#E7EFFD",
45326
+ foreground: "#437EEF"
45167
45327
  },
45168
45328
  success: {
45169
45329
  background: "#E5FFE8",
45170
- foreground: "#00990D"
45330
+ foreground: "#008A0B"
45171
45331
  },
45172
45332
  warning: {
45173
- background: "#ffedd8",
45174
- foreground: "#9e5600"
45333
+ background: "#FFE2D1",
45334
+ foreground: "#A33C00"
45175
45335
  },
45176
45336
  danger: {
45177
45337
  background: "#ffdddd",
@@ -45185,18 +45345,36 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45185
45345
  },
45186
45346
  chart: {
45187
45347
  bars: {
45188
- green: "#62de85",
45189
- blue: "#6c9af3",
45190
- fuchsia: "#FB64D6",
45191
- orange: "#ffb864",
45192
- violet: "#CC66FF",
45193
- teal: "#00CCAA"
45348
+ blue: "#437EEF",
45349
+ orange: "#FF7729",
45350
+ green: "#00E513",
45351
+ fuchsia: "#FB32C9",
45352
+ yellow: "#eef400",
45353
+ violet: "#BB33FF",
45354
+ babyblue: "#00CBEB",
45355
+ teal: "#089B83",
45356
+ sunrise: "#FFC300",
45357
+ slate: "#9a9ea7",
45358
+ red: "#ff2323"
45359
+ },
45360
+ "default": {
45361
+ blue: "#437EEF",
45362
+ orange: "#FF7729",
45363
+ green: "#00E513",
45364
+ fuchsia: "#FB32C9",
45365
+ yellow: "#eef400",
45366
+ violet: "#BB33FF",
45367
+ babyblue: "#00CBEB",
45368
+ teal: "#089B83",
45369
+ sunrise: "#FFC300",
45370
+ slate: "#9a9ea7",
45371
+ red: "#ff2323"
45194
45372
  }
45195
45373
  },
45196
45374
  iconButton: {
45197
45375
  badge: {
45198
- foreground: "#135be6",
45199
- background: "#dae6fc"
45376
+ foreground: "#437EEF",
45377
+ background: "#E7EFFD"
45200
45378
  }
45201
45379
  },
45202
45380
  icon: {
@@ -45287,14 +45465,14 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45287
45465
  },
45288
45466
  link: {
45289
45467
  label: {
45290
- "default": "#135be6",
45291
- hover: "#092e73",
45292
- active: "#135be6"
45468
+ "default": "#437EEF",
45469
+ hover: "#104EC6",
45470
+ active: "#437EEF"
45293
45471
  },
45294
45472
  icon: {
45295
- "default": "#135be6",
45296
- hover: "lch(26.3 42.1 284)",
45297
- active: "#135be6"
45473
+ "default": "#437EEF",
45474
+ hover: "lch(40.8 66.4 286)",
45475
+ active: "#437EEF"
45298
45476
  }
45299
45477
  }
45300
45478
  }
@@ -45348,32 +45526,32 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45348
45526
  success: "rgb(20% 100% 26.7% / 0.1)",
45349
45527
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45350
45528
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
45351
- warning: "rgb(100% 58% 8.63% / 0.1)",
45352
- info: "rgb(7.45% 35.7% 90.2% / 0.1)"
45529
+ warning: "rgb(100% 46.7% 16.1% / 0.1)",
45530
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)"
45353
45531
  },
45354
45532
  text: {
45355
45533
  "default": "#696e79",
45356
- success: "#00990D",
45534
+ success: "#008A0B",
45357
45535
  neutral: "#53575f",
45358
45536
  danger: "#c10000",
45359
- warning: "#9e5600",
45360
- info: "#135be6"
45537
+ warning: "#A33C00",
45538
+ info: "#437EEF"
45361
45539
  },
45362
45540
  iconBackground: {
45363
45541
  "default": "#ffffff",
45364
45542
  success: "rgb(20% 100% 26.7% / 0)",
45365
45543
  neutral: "rgb(41.2% 43.1% 47.5% / 0)",
45366
45544
  danger: "rgb(100% 13.7% 13.7% / 0)",
45367
- warning: "rgb(100% 58% 8.63% / 0)",
45368
- info: "rgb(7.45% 35.7% 90.2% / 0)"
45545
+ warning: "rgb(100% 46.7% 16.1% / 0)",
45546
+ info: "rgb(26.3% 49.4% 93.7% / 0)"
45369
45547
  },
45370
45548
  iconForeground: {
45371
45549
  "default": "#696e79",
45372
- success: "lch(54.9 75.8 135 / 0.75)",
45550
+ success: "lch(49.8 70.2 135 / 0.75)",
45373
45551
  neutral: "lch(36.8 5.23 267 / 0.75)",
45374
45552
  danger: "lch(41 86.6 40.9 / 0.75)",
45375
- warning: "lch(44.6 59.8 63.2 / 0.75)",
45376
- info: "lch(41.9 80.9 287 / 0.75)"
45553
+ warning: "lch(40.2 66.6 51.1 / 0.75)",
45554
+ info: "lch(53.4 64.6 279 / 0.75)"
45377
45555
  }
45378
45556
  }
45379
45557
  },
@@ -45463,17 +45641,17 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45463
45641
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45464
45642
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
45465
45643
  disabled: "#dfdfdf",
45466
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
45467
- warning: "rgb(100% 58% 8.63% / 0.1)"
45644
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
45645
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
45468
45646
  },
45469
45647
  text: {
45470
45648
  "default": "#696e79",
45471
- success: "#00990D",
45649
+ success: "#008A0B",
45472
45650
  neutral: "#53575f",
45473
45651
  danger: "#c10000",
45474
45652
  disabled: "#a0a0a0",
45475
- info: "#135be6",
45476
- warning: "#9e5600"
45653
+ info: "#437EEF",
45654
+ warning: "#A33C00"
45477
45655
  },
45478
45656
  stroke: {
45479
45657
  "default": "#e6e7e9",
@@ -45481,8 +45659,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45481
45659
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45482
45660
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
45483
45661
  disabled: "rgb(83.1% 83.1% 83.1%)",
45484
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
45485
- warning: "rgb(100% 58% 8.63% / 0.05)"
45662
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
45663
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
45486
45664
  }
45487
45665
  }
45488
45666
  },
@@ -45637,9 +45815,9 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45637
45815
  },
45638
45816
  empty: {
45639
45817
  text: {
45640
- "default": "#135be6",
45641
- hover: "#092e73",
45642
- active: "#135be6",
45818
+ "default": "#437EEF",
45819
+ hover: "#104EC6",
45820
+ active: "#437EEF",
45643
45821
  disabled: "#a0a0a0"
45644
45822
  },
45645
45823
  background: {
@@ -45763,19 +45941,19 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45763
45941
  },
45764
45942
  info: {
45765
45943
  background: {
45766
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
45767
- hover: "#b5cdf9",
45768
- active: "#91b3f6"
45944
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
45945
+ hover: "#D0DFFB",
45946
+ active: "#A1BEF7"
45769
45947
  },
45770
45948
  text: {
45771
- "default": "#135be6",
45772
- hover: "#135be6",
45773
- active: "#135be6"
45949
+ "default": "#437EEF",
45950
+ hover: "#437EEF",
45951
+ active: "#437EEF"
45774
45952
  },
45775
45953
  stroke: {
45776
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
45777
- hover: "#b5cdf9",
45778
- active: "#91b3f6"
45954
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
45955
+ hover: "#D0DFFB",
45956
+ active: "#A1BEF7"
45779
45957
  }
45780
45958
  }
45781
45959
  }
@@ -46037,7 +46215,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46037
46215
  },
46038
46216
  link: {
46039
46217
  "default": "#161517",
46040
- hover: "#135be6",
46218
+ hover: "#437EEF",
46041
46219
  active: "#161517",
46042
46220
  disabled: "#a0a0a0"
46043
46221
  },
@@ -46304,7 +46482,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46304
46482
  background: {
46305
46483
  "default": "#f6f7fa",
46306
46484
  hover: "#f6f7fa",
46307
- active: "#62de85",
46485
+ active: "#00E513",
46308
46486
  disabled: "#dfdfdf"
46309
46487
  },
46310
46488
  stroke: {
@@ -46324,13 +46502,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46324
46502
  background: {
46325
46503
  "default": "#f6f7fa",
46326
46504
  hover: "#f6f7fa",
46327
- active: "#6c9af3",
46505
+ active: "#437EEF",
46328
46506
  disabled: "#dfdfdf"
46329
46507
  },
46330
46508
  stroke: {
46331
- "default": "#6c9af3",
46332
- hover: "#6c9af3",
46333
- active: "#6c9af3",
46509
+ "default": "#6D9BF3",
46510
+ hover: "#6D9BF3",
46511
+ active: "#6D9BF3",
46334
46512
  disabled: "#c0c0c0"
46335
46513
  },
46336
46514
  check: {
@@ -46344,7 +46522,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46344
46522
  background: {
46345
46523
  "default": "#f6f7fa",
46346
46524
  hover: "#f6f7fa",
46347
- active: "#FB64D6",
46525
+ active: "#FB32C9",
46348
46526
  disabled: "#dfdfdf"
46349
46527
  },
46350
46528
  stroke: {
@@ -46364,13 +46542,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46364
46542
  background: {
46365
46543
  "default": "#f6f7fa",
46366
46544
  hover: "#f6f7fa",
46367
- active: "#ffb864",
46545
+ active: "#FF7729",
46368
46546
  disabled: "#dfdfdf"
46369
46547
  },
46370
46548
  stroke: {
46371
- "default": "#ffb864",
46372
- hover: "#ffb864",
46373
- active: "#ffb864",
46549
+ "default": "#FF9457",
46550
+ hover: "#FF9457",
46551
+ active: "#FF9457",
46374
46552
  disabled: "#c0c0c0"
46375
46553
  },
46376
46554
  check: {
@@ -46384,13 +46562,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46384
46562
  background: {
46385
46563
  "default": "#f6f7fa",
46386
46564
  hover: "#f6f7fa",
46387
- active: "#00CCAA",
46565
+ active: "#089B83",
46388
46566
  disabled: "#dfdfdf"
46389
46567
  },
46390
46568
  stroke: {
46391
- "default": "#00CCAA",
46392
- hover: "#00CCAA",
46393
- active: "#00CCAA",
46569
+ "default": "#089B83",
46570
+ hover: "#089B83",
46571
+ active: "#089B83",
46394
46572
  disabled: "#c0c0c0"
46395
46573
  },
46396
46574
  check: {
@@ -46404,7 +46582,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
46404
46582
  background: {
46405
46583
  "default": "#f6f7fa",
46406
46584
  hover: "#f6f7fa",
46407
- active: "#CC66FF",
46585
+ active: "#BB33FF",
46408
46586
  disabled: "#dfdfdf"
46409
46587
  },
46410
46588
  stroke: {
@@ -47508,7 +47686,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47508
47686
  background: {
47509
47687
  "default": "#f6f7fa",
47510
47688
  hover: "#f6f7fa",
47511
- active: "rgb(85% 89.5% 97.8%)"
47689
+ active: "rgb(89.8% 92.8% 98.1%)"
47512
47690
  },
47513
47691
  title: {
47514
47692
  "default": "#161517"
@@ -47565,8 +47743,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47565
47743
  color: {
47566
47744
  background: {
47567
47745
  "default": "#ffffff",
47568
- hover: "lch(90.9 12.2 266 / 0.2)",
47569
- active: "rgb(85.9% 90.4% 98.9% / 0.2)"
47746
+ hover: "lch(94.1 7.78 264 / 0.2)",
47747
+ active: "rgb(90.8% 93.8% 99.2% / 0.2)"
47570
47748
  },
47571
47749
  stroke: {
47572
47750
  "default": "#e6e7e9"
@@ -47575,7 +47753,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47575
47753
  "default": "#161517"
47576
47754
  },
47577
47755
  link: {
47578
- "default": "#135be6"
47756
+ "default": "#437EEF"
47579
47757
  },
47580
47758
  label: {
47581
47759
  "default": "#696e79"
@@ -47725,8 +47903,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47725
47903
  },
47726
47904
  icon: {
47727
47905
  "default": "lch(11.1 1.37 305)",
47728
- success: "#00990D",
47729
- warning: "#9e5600",
47906
+ success: "#008A0B",
47907
+ warning: "#A33C00",
47730
47908
  danger: "#c10000"
47731
47909
  }
47732
47910
  }
@@ -47916,8 +48094,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47916
48094
  color: {
47917
48095
  background: {
47918
48096
  "default": "#f6f7fa",
47919
- selectIndirect: "lch(93.2 9.14 266)",
47920
- selectDirect: "lch(90 12.1 266)"
48097
+ selectIndirect: "lch(95.6 5.84 264)",
48098
+ selectDirect: "lch(93.2 7.7 264)"
47921
48099
  },
47922
48100
  title: {
47923
48101
  "default": "#696e79",
@@ -47926,8 +48104,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47926
48104
  },
47927
48105
  stroke: {
47928
48106
  "default": "lch(89.3 1.07 266)",
47929
- selectIndirect: "lch(88.6 11.9 266)",
47930
- selectDirect: "lch(79.7 24 268)"
48107
+ selectIndirect: "lch(91.8 7.59 264)",
48108
+ selectDirect: "lch(86.1 15.1 266)"
47931
48109
  }
47932
48110
  }
47933
48111
  },
@@ -47947,13 +48125,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
47947
48125
  color: {
47948
48126
  background: {
47949
48127
  "default": "#ffffff",
47950
- selectIndirect: "lch(90.9 12.2 266 / 0.2)",
47951
- selectDirect: "lch(90.9 12.2 266 / 0.2)"
48128
+ selectIndirect: "lch(94.1 7.78 264 / 0.2)",
48129
+ selectDirect: "lch(94.1 7.78 264 / 0.2)"
47952
48130
  },
47953
48131
  stroke: {
47954
48132
  "default": "#e6e7e9",
47955
- selectIndirect: "lch(65.4 19.7 268)",
47956
- selectDirect: "#135be6"
48133
+ selectIndirect: "lch(70.7 12.4 266)",
48134
+ selectDirect: "#437EEF"
47957
48135
  },
47958
48136
  text: {
47959
48137
  "default": "lch(7.17 1.44 305)",
@@ -48047,24 +48225,24 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48047
48225
  success: "rgb(20% 100% 26.7% / 0.1)",
48048
48226
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
48049
48227
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
48050
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
48051
- warning: "rgb(100% 58% 8.63% / 0.1)"
48228
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
48229
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
48052
48230
  },
48053
48231
  text: {
48054
48232
  "default": "rgba(0,0,0,0)",
48055
- success: "#00990D",
48233
+ success: "#008A0B",
48056
48234
  neutral: "#53575f",
48057
48235
  danger: "#c10000",
48058
- info: "#135be6",
48059
- warning: "#9e5600"
48236
+ info: "#437EEF",
48237
+ warning: "#A33C00"
48060
48238
  },
48061
48239
  stroke: {
48062
48240
  "default": "rgba(0,0,0,0)",
48063
48241
  success: "rgb(20% 100% 26.7% / 0.05)",
48064
48242
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
48065
48243
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
48066
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
48067
- warning: "rgb(100% 58% 8.63% / 0.05)"
48244
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
48245
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
48068
48246
  }
48069
48247
  }
48070
48248
  },
@@ -48145,8 +48323,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48145
48323
  "default": "#161517",
48146
48324
  muted: "#696e79",
48147
48325
  link: {
48148
- "default": "#135be6",
48149
- hover: "#092e73"
48326
+ "default": "#437EEF",
48327
+ hover: "#104EC6"
48150
48328
  },
48151
48329
  danger: "#c10000"
48152
48330
  },
@@ -48159,7 +48337,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48159
48337
  "default": "#151515"
48160
48338
  },
48161
48339
  outline: {
48162
- "default": "#135be6"
48340
+ "default": "#437EEF"
48163
48341
  },
48164
48342
  shadow: {
48165
48343
  "default": "lch(6.77 0 0 / 0.15)"
@@ -48173,16 +48351,16 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48173
48351
  feedback: {
48174
48352
  color: {
48175
48353
  info: {
48176
- background: "rgb(7.45% 35.7% 90.2% / 0.1)",
48177
- foreground: "#135be6"
48354
+ background: "rgb(26.3% 49.4% 93.7% / 0.1)",
48355
+ foreground: "#437EEF"
48178
48356
  },
48179
48357
  success: {
48180
48358
  background: "rgb(20% 100% 26.7% / 0.1)",
48181
- foreground: "#00990D"
48359
+ foreground: "#008A0B"
48182
48360
  },
48183
48361
  warning: {
48184
- background: "rgb(100% 58% 8.63% / 0.1)",
48185
- foreground: "#9e5600"
48362
+ background: "rgb(100% 46.7% 16.1% / 0.1)",
48363
+ foreground: "#A33C00"
48186
48364
  },
48187
48365
  danger: {
48188
48366
  background: "rgb(100% 13.7% 13.7% / 0.1)",
@@ -48203,12 +48381,32 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48203
48381
  chart: {
48204
48382
  bars: {
48205
48383
  color: {
48206
- green: "#62de85",
48207
- blue: "#6c9af3",
48208
- fuchsia: "#FB64D6",
48209
- orange: "#ffb864",
48210
- violet: "#CC66FF",
48211
- teal: "#00CCAA"
48384
+ blue: "#437EEF",
48385
+ orange: "#FF7729",
48386
+ green: "#00E513",
48387
+ fuchsia: "#FB32C9",
48388
+ yellow: "#eef400",
48389
+ violet: "#BB33FF",
48390
+ babyblue: "#00CBEB",
48391
+ red: "#ff2323",
48392
+ teal: "#089B83",
48393
+ sunrise: "#FFC300",
48394
+ slate: "#9a9ea7"
48395
+ }
48396
+ },
48397
+ color: {
48398
+ "default": {
48399
+ blue: "#437EEF",
48400
+ orange: "#FF7729",
48401
+ green: "#00E513",
48402
+ fuchsia: "#FB32C9",
48403
+ yellow: "#eef400",
48404
+ violet: "#BB33FF",
48405
+ babyblue: "#00CBEB",
48406
+ red: "#ff2323",
48407
+ teal: "#089B83",
48408
+ sunrise: "#FFC300",
48409
+ slate: "#9a9ea7"
48212
48410
  }
48213
48411
  }
48214
48412
  }
@@ -48265,8 +48463,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48265
48463
  "default": "#161517",
48266
48464
  muted: "#696e79",
48267
48465
  link: {
48268
- "default": "#135be6",
48269
- hover: "#092e73"
48466
+ "default": "#437EEF",
48467
+ hover: "#104EC6"
48270
48468
  }
48271
48469
  },
48272
48470
  stroke: {
@@ -48279,23 +48477,23 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48279
48477
  "default": "#151515"
48280
48478
  },
48281
48479
  outline: {
48282
- "default": "#135be6"
48480
+ "default": "#437EEF"
48283
48481
  },
48284
48482
  shadow: {
48285
48483
  "default": "lch(6.77 0 0 / 0.15)"
48286
48484
  },
48287
48485
  feedback: {
48288
48486
  info: {
48289
- background: "#dae6fc",
48290
- foreground: "#135be6"
48487
+ background: "#E7EFFD",
48488
+ foreground: "#437EEF"
48291
48489
  },
48292
48490
  success: {
48293
48491
  background: "#E5FFE8",
48294
- foreground: "#00990D"
48492
+ foreground: "#008A0B"
48295
48493
  },
48296
48494
  warning: {
48297
- background: "#ffedd8",
48298
- foreground: "#9e5600"
48495
+ background: "#FFE2D1",
48496
+ foreground: "#A33C00"
48299
48497
  },
48300
48498
  danger: {
48301
48499
  background: "#ffdddd",
@@ -48309,18 +48507,38 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48309
48507
  },
48310
48508
  chart: {
48311
48509
  bars: {
48312
- green: "#62de85",
48313
- blue: "#6c9af3",
48314
- fuchsia: "#FB64D6",
48315
- orange: "#ffb864",
48316
- violet: "#CC66FF",
48317
- teal: "#00CCAA"
48510
+ blue: "#437EEF",
48511
+ orange: "#FF7729",
48512
+ green: "#00E513",
48513
+ fuchsia: "#FB32C9",
48514
+ yellow: "#eef400",
48515
+ violet: "#BB33FF",
48516
+ babyblue: "#00CBEB",
48517
+ danger: "#ff2323",
48518
+ teal: "#089B83",
48519
+ sunrise: "#FFC300",
48520
+ slate: "#9a9ea7",
48521
+ red: "#ff2323"
48522
+ },
48523
+ "default": {
48524
+ blue: "#437EEF",
48525
+ orange: "#FF7729",
48526
+ green: "#00E513",
48527
+ fuchsia: "#FB32C9",
48528
+ yellow: "#eef400",
48529
+ violet: "#BB33FF",
48530
+ babyblue: "#00CBEB",
48531
+ danger: "#ff2323",
48532
+ teal: "#089B83",
48533
+ sunrise: "#FFC300",
48534
+ slate: "#9a9ea7",
48535
+ red: "#ff2323"
48318
48536
  }
48319
48537
  },
48320
48538
  iconButton: {
48321
48539
  badge: {
48322
- foreground: "#135be6",
48323
- background: "#dae6fc"
48540
+ foreground: "#437EEF",
48541
+ background: "#E7EFFD"
48324
48542
  }
48325
48543
  },
48326
48544
  icon: {
@@ -48335,14 +48553,15 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48335
48553
  const palette = {
48336
48554
  brand: {
48337
48555
  "50": "#ffffe8",
48338
- "100": "#feffba",
48556
+ "100": "#FEFFC2",
48339
48557
  "200": "#fdffa3",
48340
48558
  "300": "#FAFF69",
48341
48559
  "400": "#eef400",
48342
- "500": "#9fa300",
48343
- "600": "#4f5100",
48344
- "700": "#27291B",
48345
- "800": "#161600",
48560
+ "500": "#C7CC00",
48561
+ "600": "#959900",
48562
+ "700": "#686B00",
48563
+ "800": "#3C4601",
48564
+ "900": "#333300",
48346
48565
  base: "#fbff46"
48347
48566
  },
48348
48567
  neutral: {
@@ -48391,17 +48610,17 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48391
48610
  base: "#2f2c3a"
48392
48611
  },
48393
48612
  info: {
48394
- "50": "#dae6fc",
48395
- "100": "#b5cdf9",
48396
- "200": "#91b3f6",
48397
- "300": "#6c9af3",
48398
- "400": "#135be6",
48399
- "500": "#0e44ad",
48400
- "600": "#092e73",
48401
- "650": "#09255B",
48402
- "700": "#061d48",
48403
- "800": "#05173a",
48404
- "900": "#041330",
48613
+ "50": "#E7EFFD",
48614
+ "100": "#D0DFFB",
48615
+ "200": "#A1BEF7",
48616
+ "300": "#6D9BF3",
48617
+ "400": "#437EEF",
48618
+ "500": "#1D64EC",
48619
+ "600": "#104EC6",
48620
+ "650": "#0D3E9B",
48621
+ "700": "#0D3E9B",
48622
+ "800": "#092B6C",
48623
+ "900": "#061C47",
48405
48624
  base: "#4781f0"
48406
48625
  },
48407
48626
  success: {
@@ -48410,25 +48629,25 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48410
48629
  "200": "#99FFA1",
48411
48630
  "300": "#66FF73",
48412
48631
  "400": "#33FF44",
48413
- "500": "#00FF15",
48414
- "600": "#00CC11",
48415
- "700": "#00990D",
48416
- "800": "#006609",
48632
+ "500": "#00E513",
48633
+ "600": "#00BD10",
48634
+ "700": "#008A0B",
48635
+ "800": "#006108",
48417
48636
  "850": "#004206",
48418
48637
  "900": "#004206",
48419
48638
  base: "#62de85"
48420
48639
  },
48421
48640
  warning: {
48422
- "50": "#ffedd8",
48423
- "100": "#ffdbb1",
48424
- "200": "#ffca8b",
48425
- "300": "#ffb864",
48426
- "400": "#ff9416",
48427
- "500": "#ed8000",
48428
- "600": "#c66b00",
48429
- "700": "#9e5600",
48430
- "800": "#4f2b00",
48431
- "900": "#271500",
48641
+ "50": "#FFE2D1",
48642
+ "100": "#FFCBAD",
48643
+ "200": "#FFB88F",
48644
+ "300": "#FF9457",
48645
+ "400": "#FF7729",
48646
+ "500": "#F55A00",
48647
+ "600": "#D64F00",
48648
+ "700": "#A33C00",
48649
+ "800": "#7A2D00",
48650
+ "900": "#471A00",
48432
48651
  base: "#ffa63d"
48433
48652
  },
48434
48653
  danger: {
@@ -48454,17 +48673,17 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48454
48673
  transparent: "rgba(0,0,0,0)"
48455
48674
  },
48456
48675
  teal: {
48457
- "50": "#E5FFFB",
48458
- "100": "#CCFFF6",
48459
- "200": "#99FFEE",
48460
- "300": "#66FFE5",
48461
- "400": "#33FFDD",
48462
- "500": "#00FFD4",
48463
- "600": "#00CCAA",
48464
- "700": "#009980",
48465
- "800": "#006655",
48676
+ "50": "#E6FEFA",
48677
+ "100": "#CFFCF4",
48678
+ "200": "#A3FAEC",
48679
+ "300": "#6DF8E1",
48680
+ "400": "#0CEDC8",
48681
+ "500": "#0BD0AF",
48682
+ "600": "#089B83",
48683
+ "700": "#067462",
48684
+ "800": "#045245",
48466
48685
  "850": "#004237",
48467
- "900": "#00332A"
48686
+ "900": "#03352D"
48468
48687
  },
48469
48688
  violet: {
48470
48689
  "50": "#F6E5FF",
@@ -48491,6 +48710,30 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
48491
48710
  "800": "#66004D",
48492
48711
  "850": "#4D0039",
48493
48712
  "900": "#330026"
48713
+ },
48714
+ sunrise: {
48715
+ "50": "#FFF3CC",
48716
+ "100": "#FFE799",
48717
+ "200": "#FFDB66",
48718
+ "300": "#FFCF33",
48719
+ "400": "#FFC300",
48720
+ "500": "#E0AC00",
48721
+ "600": "#B28800",
48722
+ "700": "#8A6900",
48723
+ "800": "#574200",
48724
+ "900": "#332700"
48725
+ },
48726
+ babyblue: {
48727
+ "50": "#DBFAFF",
48728
+ "100": "#BDF6FF",
48729
+ "200": "#8AEFFF",
48730
+ "300": "#33E4FF",
48731
+ "400": "#00CBEB",
48732
+ "500": "#00B5D1",
48733
+ "600": "#008599",
48734
+ "700": "#006170",
48735
+ "800": "#00424D",
48736
+ "900": "#002C33"
48494
48737
  }
48495
48738
  };
48496
48739
  const sizes = {