@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.
@@ -16914,9 +16914,46 @@ function throttle$1(func, wait, options) {
16914
16914
  }
16915
16915
  var throttle_1 = throttle$1;
16916
16916
  const throttle$2 = /* @__PURE__ */ getDefaultExportFromCjs(throttle_1);
16917
+ const initialPosition = {
16918
+ left: "calc(100% - 4px)",
16919
+ top: "0"
16920
+ };
16921
+ const useResizingState = () => {
16922
+ const [pressedColumnIndex, setPressedColumnIndex] = useState(-1);
16923
+ const [pointer, setPointer] = useState(null);
16924
+ const [position, setPosition] = useState(initialPosition);
16925
+ const [lastPressedTimestamp, setLastPressedTimestamp] = useState(0);
16926
+ const getIsPressed = useCallback((columnIndex) => {
16927
+ return pressedColumnIndex === columnIndex;
16928
+ }, [pressedColumnIndex]);
16929
+ const setIsPressed = useCallback((columnIndex, pressed) => {
16930
+ if (pressed) {
16931
+ setPressedColumnIndex(columnIndex);
16932
+ setLastPressedTimestamp(Date.now());
16933
+ } else {
16934
+ setPressedColumnIndex(-1);
16935
+ }
16936
+ }, []);
16937
+ const getPosition = useCallback((columnIndex) => {
16938
+ if (pressedColumnIndex !== columnIndex) {
16939
+ return initialPosition;
16940
+ }
16941
+ return position;
16942
+ }, [position, pressedColumnIndex]);
16943
+ return {
16944
+ pointer,
16945
+ setPointer,
16946
+ getIsPressed,
16947
+ setIsPressed,
16948
+ getPosition,
16949
+ setPosition,
16950
+ lastPressedTimestamp
16951
+ };
16952
+ };
16953
+ const DOUBLE_CLICK_THRESHOLD_MSEC = 300;
16917
16954
  const ResizeSpan = styled.div.withConfig({
16918
16955
  componentId: "sc-1r6e5v3-0"
16919
- })(["top:0;left:calc(100% - 4px);z-index:1;position:absolute;height:", "px;cursor:col-resize;width:4px;overflow:auto;&:hover,&:active,&:hover{background:", ";}", ""], ({
16956
+ })(["top:", ";left:", ";z-index:1;position:absolute;height:", "px;cursor:col-resize;width:4px;overflow:auto;&:hover,&:active,&:hover{background:", ";}", ""], initialPosition.top, initialPosition.left, ({
16920
16957
  $height
16921
16958
  }) => $height, ({
16922
16959
  theme: theme2
@@ -16930,67 +16967,87 @@ const ColumnResizer = ({
16930
16967
  height,
16931
16968
  onColumnResize: onColumnResizeProp,
16932
16969
  columnIndex,
16933
- setResizeCursorPosition
16970
+ getResizerPosition,
16971
+ columnWidth,
16972
+ resizingState
16934
16973
  }) => {
16935
16974
  const resizeRef = useRef(null);
16936
- const pointerRef = useRef(null);
16937
- const [isPressed, setIsPressed] = useState(false);
16975
+ const {
16976
+ pointer,
16977
+ setPointer,
16978
+ getIsPressed,
16979
+ setIsPressed,
16980
+ getPosition,
16981
+ setPosition,
16982
+ lastPressedTimestamp
16983
+ } = resizingState;
16984
+ const isPressed = getIsPressed(columnIndex);
16985
+ const position = getPosition(columnIndex);
16938
16986
  const onColumnResize = throttle$2(onColumnResizeProp, 1e3);
16939
- const onMouseDown = useCallback((e) => {
16940
- e.preventDefault();
16941
- e.stopPropagation();
16942
- setIsPressed(true);
16943
- if (e.detail > 1) {
16944
- onColumnResize(columnIndex, 0, "auto");
16987
+ useEffect(() => {
16988
+ const control = resizeRef.current;
16989
+ if (!isPressed || !control || !pointer) {
16990
+ return;
16945
16991
  }
16946
- }, [columnIndex, onColumnResize, setIsPressed]);
16947
- const onMouseUp = useCallback((e) => {
16948
- e.stopPropagation();
16949
- setIsPressed(false);
16950
- }, [setIsPressed]);
16992
+ const pointerId = pointer.pointerId;
16993
+ try {
16994
+ control.setPointerCapture(pointerId);
16995
+ return () => {
16996
+ if (control.hasPointerCapture(pointerId)) {
16997
+ control.releasePointerCapture(pointerId);
16998
+ }
16999
+ };
17000
+ } catch (e) {
17001
+ console.error(e);
17002
+ }
17003
+ }, [pointer, isPressed, columnIndex]);
16951
17004
  const onPointerDown = useCallback((e) => {
16952
17005
  e.stopPropagation();
17006
+ e.preventDefault();
16953
17007
  if (resizeRef.current) {
16954
- resizeRef.current.setPointerCapture(e.pointerId);
16955
- const header = resizeRef.current.closest(`[data-header="${columnIndex}"]`);
16956
- if (header) {
16957
- pointerRef.current = {
16958
- pointerId: e.pointerId,
16959
- initialClientX: e.clientX,
16960
- width: header.clientWidth
16961
- };
16962
- setResizeCursorPosition(resizeRef.current, e.clientX, header.clientWidth, columnIndex);
17008
+ if (lastPressedTimestamp > Date.now() - DOUBLE_CLICK_THRESHOLD_MSEC) {
17009
+ onColumnResize(columnIndex, 0, "auto");
16963
17010
  }
17011
+ setPointer({
17012
+ pointerId: e.pointerId,
17013
+ initialClientX: e.clientX,
17014
+ width: columnWidth
17015
+ });
17016
+ setIsPressed(columnIndex, true);
17017
+ const pos = getResizerPosition(e.clientX, columnWidth, columnIndex);
17018
+ setPosition(pos);
16964
17019
  }
16965
- }, [columnIndex, setResizeCursorPosition]);
16966
- const onMouseMove = useCallback((e) => {
17020
+ }, [lastPressedTimestamp, setPointer, columnWidth, setIsPressed, columnIndex, getResizerPosition, setPosition, onColumnResize]);
17021
+ const onPointerMove = useCallback((e) => {
16967
17022
  e.stopPropagation();
16968
- if (resizeRef.current && pointerRef.current) {
16969
- const header = resizeRef.current.closest(`[data-header="${columnIndex}"]`);
16970
- if (header) {
16971
- resizeRef.current.setPointerCapture(pointerRef.current.pointerId);
16972
- const width = header.clientWidth + (e.clientX - pointerRef.current.initialClientX);
16973
- setResizeCursorPosition(resizeRef.current, e.clientX, width, columnIndex);
16974
- pointerRef.current.width = Math.max(width, 50);
16975
- }
17023
+ e.preventDefault();
17024
+ if (isPressed && pointer) {
17025
+ const width = columnWidth + (e.clientX - pointer.initialClientX);
17026
+ const pos = getResizerPosition(e.clientX, width, columnIndex);
17027
+ setPosition(pos);
17028
+ pointer.width = Math.max(width, 50);
16976
17029
  }
16977
- }, [columnIndex, setResizeCursorPosition]);
17030
+ }, [pointer, isPressed, columnWidth, getResizerPosition, columnIndex, setPosition]);
16978
17031
  return /* @__PURE__ */ jsx(ResizeSpan, { ref: resizeRef, $height: height, $isPressed: isPressed, onPointerDown, onPointerUp: (e) => {
16979
- var _a, _b;
16980
17032
  e.preventDefault();
16981
17033
  e.stopPropagation();
16982
17034
  if (resizeRef.current && // 0 is a valid pointerId in Firefox
16983
- (((_a = pointerRef.current) == null ? void 0 : _a.pointerId) || ((_b = pointerRef.current) == null ? void 0 : _b.pointerId) === 0)) {
16984
- resizeRef.current.releasePointerCapture(pointerRef.current.pointerId);
16985
- const shouldCallResize = e.clientX !== pointerRef.current.initialClientX;
17035
+ ((pointer == null ? void 0 : pointer.pointerId) || (pointer == null ? void 0 : pointer.pointerId) === 0)) {
17036
+ const shouldCallResize = e.clientX !== pointer.initialClientX;
16986
17037
  if (shouldCallResize) {
16987
- onColumnResize(columnIndex, pointerRef.current.width, "manual");
17038
+ onColumnResize(columnIndex, pointer.width, "manual");
16988
17039
  }
16989
- resizeRef.current.style.top = "0";
16990
- resizeRef.current.style.left = "calc(100% - 4px)";
16991
- pointerRef.current = null;
17040
+ setPosition(initialPosition);
17041
+ setPointer(null);
17042
+ setIsPressed(columnIndex, false);
16992
17043
  }
16993
- }, onMouseMove, onMouseDown, onClick: (e) => e.stopPropagation(), onMouseUp, "data-resize": true });
17044
+ }, onPointerMove, onPointerCancel: (e) => {
17045
+ e.preventDefault();
17046
+ e.stopPropagation();
17047
+ setPosition(initialPosition);
17048
+ setPointer(null);
17049
+ setIsPressed(columnIndex, false);
17050
+ }, onClick: (e) => e.stopPropagation(), "data-resize": true, style: position });
16994
17051
  };
16995
17052
  const HeaderContainer = styled.div.withConfig({
16996
17053
  componentId: "sc-1oadqc8-0"
@@ -17030,15 +17087,16 @@ const RowColumn = styled(StyledCell).withConfig({
17030
17087
  const Column = ({
17031
17088
  columnIndex,
17032
17089
  cell,
17033
- columnWidth,
17090
+ getColumnWidth: getColumnWidth2,
17034
17091
  getColumnHorizontalPosition,
17035
17092
  getSelectionType,
17036
17093
  isFirstColumn,
17037
17094
  isLastColumn,
17038
17095
  onColumnResize,
17039
17096
  height,
17040
- setResizeCursorPosition,
17041
- showBorder
17097
+ getResizerPosition,
17098
+ showBorder,
17099
+ resizingState
17042
17100
  }) => {
17043
17101
  const selectionType = getSelectionType({
17044
17102
  column: columnIndex,
@@ -17051,9 +17109,10 @@ const Column = ({
17051
17109
  const columnPosition = getColumnHorizontalPosition(columnIndex);
17052
17110
  const isSelected = selectionType === "selectDirect";
17053
17111
  const isSelectedLeft = (leftSelectionType === "selectDirect" || isSelected) && leftSelectionType !== selectionType;
17054
- return /* @__PURE__ */ jsxs(HeaderCellContainer, { $width: columnWidth(columnIndex), $columnPosition: columnPosition, $height: height, "data-header": columnIndex, children: [
17055
- /* @__PURE__ */ 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) }),
17056
- /* @__PURE__ */ jsx(ColumnResizer, { height, onColumnResize, columnIndex, setResizeCursorPosition })
17112
+ const columnWidth = getColumnWidth2(columnIndex);
17113
+ return /* @__PURE__ */ jsxs(HeaderCellContainer, { $width: columnWidth, $columnPosition: columnPosition, $height: height, "data-header": columnIndex, children: [
17114
+ /* @__PURE__ */ 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 }),
17115
+ /* @__PURE__ */ jsx(ColumnResizer, { height, onColumnResize, columnIndex, getResizerPosition, columnWidth, resizingState })
17057
17116
  ] });
17058
17117
  };
17059
17118
  const Header = ({
@@ -17064,14 +17123,15 @@ const Header = ({
17064
17123
  minColumn,
17065
17124
  maxColumn,
17066
17125
  height,
17067
- columnWidth,
17126
+ getColumnWidth: getColumnWidth2,
17068
17127
  cell,
17069
17128
  columnCount,
17070
17129
  getSelectionType,
17071
17130
  onColumnResize,
17072
17131
  getColumnHorizontalPosition,
17073
- setResizeCursorPosition,
17074
- showBorder
17132
+ getResizerPosition,
17133
+ showBorder,
17134
+ resizingState
17075
17135
  }) => {
17076
17136
  const selectedAllType = getSelectionType({
17077
17137
  type: "all"
@@ -17079,7 +17139,7 @@ const Header = ({
17079
17139
  return /* @__PURE__ */ jsxs(HeaderContainer, { $height: height, $scrolledVertical: scrolledVertical, children: [
17080
17140
  /* @__PURE__ */ jsx(ScrollableHeaderContainer, { $left: rowNumberWidth, children: Array.from({
17081
17141
  length: maxColumn - minColumn + 1
17082
- }, (_, index2) => minColumn + index2).map((columnIndex) => /* @__PURE__ */ jsx(Column, { getSelectionType, columnIndex, columnWidth, getColumnHorizontalPosition, cell, isFirstColumn: columnIndex === 0 && !showRowNumber, isLastColumn: columnIndex + 1 === columnCount, onColumnResize, height, setResizeCursorPosition, showBorder }, `header-${columnIndex}`)) }),
17142
+ }, (_, index2) => minColumn + index2).map((columnIndex) => /* @__PURE__ */ jsx(Column, { getSelectionType, columnIndex, getColumnWidth: getColumnWidth2, getColumnHorizontalPosition, cell, isFirstColumn: columnIndex === 0 && !showRowNumber, isLastColumn: columnIndex + 1 === columnCount, onColumnResize, height, getResizerPosition, showBorder, resizingState }, `header-${columnIndex}`)) }),
17083
17143
  showRowNumber && /* @__PURE__ */ jsx(RowColumnContainer, { $width: rowNumberWidth, $height: height, $columnPosition: 0, $scrolledHorizontal: scrolledHorizontal, children: /* @__PURE__ */ 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: "#" }) })
17084
17144
  ] });
17085
17145
  };
@@ -31758,6 +31818,7 @@ const Grid = forwardRef(({
31758
31818
  onSelectProp(action, selection2, focus2);
31759
31819
  }
31760
31820
  }, [onSelectProp]);
31821
+ const resizingState = useResizingState();
31761
31822
  const onFocusChange = useCallback((row, column) => {
31762
31823
  setFocus((focus2) => ({
31763
31824
  row: row ?? (focusProp == null ? void 0 : focusProp.row) ?? focus2.row,
@@ -31831,11 +31892,14 @@ const Grid = forwardRef(({
31831
31892
  }
31832
31893
  return columnLeft + rowNumberWidth - 4;
31833
31894
  }, [getColumnHorizontalPosition, rowNumberWidth]);
31834
- const setResizeCursorPosition = useCallback((element, clientX, width, columnIndex) => {
31835
- element.style.left = `${getFixedResizerLeftPosition(clientX, width, columnIndex)}px`;
31895
+ const getResizerPosition = useCallback((clientX, width, columnIndex) => {
31896
+ const result = {
31897
+ left: `${getFixedResizerLeftPosition(clientX, width, columnIndex)}px`
31898
+ };
31836
31899
  if (outerRef.current) {
31837
- element.style.top = `${outerRef.current.scrollTop}px`;
31900
+ result.top = `${outerRef.current.scrollTop}px`;
31838
31901
  }
31902
+ return result;
31839
31903
  }, [getFixedResizerLeftPosition]);
31840
31904
  const clearSelectionAndFocus = useCallback((force) => {
31841
31905
  setSelection((selection2) => {
@@ -31890,7 +31954,7 @@ const Grid = forwardRef(({
31890
31954
  return /* @__PURE__ */ jsxs(GridContainer, { ...containerProps, className: `sticky-grid__container grid-outer ${props.className ?? ""}`, children: [
31891
31955
  /* @__PURE__ */ jsx(GridDataContainer, { $top: showHeader ? headerHeight : 0, $left: showRowNumber ? rowNumberWidth : 0, ref, children }),
31892
31956
  showRowNumber && /* @__PURE__ */ jsx(RowNumberColumn, { scrolledHorizontal, minRow, maxRow, rowHeight, headerHeight, rowWidth: rowNumberWidth, rowCount, getSelectionType, showHeader, rowStart, showBorder }),
31893
- showHeader && /* @__PURE__ */ jsx(Header, { scrolledVertical, scrolledHorizontal, showRowNumber, minColumn, maxColumn, height: headerHeight, columnWidth, cell, rowNumberWidth, getSelectionType, columnCount, onColumnResize, getColumnHorizontalPosition, setResizeCursorPosition, showBorder })
31957
+ showHeader && /* @__PURE__ */ jsx(Header, { scrolledVertical, scrolledHorizontal, showRowNumber, minColumn, maxColumn, height: headerHeight, getColumnWidth: columnWidth, cell, rowNumberWidth, getSelectionType, columnCount, onColumnResize, getColumnHorizontalPosition, getResizerPosition, showBorder, resizingState })
31894
31958
  ] });
31895
31959
  });
31896
31960
  useEffect(() => {
@@ -41073,19 +41137,19 @@ const click$3 = {
41073
41137
  },
41074
41138
  info: {
41075
41139
  background: {
41076
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
41077
- hover: "#b5cdf9",
41078
- active: "#91b3f6"
41140
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
41141
+ hover: "#D0DFFB",
41142
+ active: "#A1BEF7"
41079
41143
  },
41080
41144
  text: {
41081
- "default": "#135be6",
41082
- hover: "#135be6",
41083
- active: "#135be6"
41145
+ "default": "#437EEF",
41146
+ hover: "#437EEF",
41147
+ active: "#437EEF"
41084
41148
  },
41085
41149
  stroke: {
41086
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
41087
- hover: "#b5cdf9",
41088
- active: "#91b3f6"
41150
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
41151
+ hover: "#D0DFFB",
41152
+ active: "#A1BEF7"
41089
41153
  }
41090
41154
  }
41091
41155
  }
@@ -41741,12 +41805,32 @@ const click$3 = {
41741
41805
  chart: {
41742
41806
  bars: {
41743
41807
  color: {
41744
- green: "#00FF15",
41745
- blue: "#6c9af3",
41746
- fuchsia: "#FB64D6",
41747
- orange: "#ffb864",
41748
- violet: "#CC66FF",
41749
- teal: "#00CCAA"
41808
+ blue: "#437EEF",
41809
+ orange: "#FF7729",
41810
+ green: "#00E513",
41811
+ fuchsia: "#FB32C9",
41812
+ yellow: "#eef400",
41813
+ violet: "#BB33FF",
41814
+ babyblue: "#00CBEB",
41815
+ red: "#ff2323",
41816
+ teal: "#089B83",
41817
+ sunrise: "#FFC300",
41818
+ slate: "#9a9ea7"
41819
+ }
41820
+ },
41821
+ color: {
41822
+ "default": {
41823
+ blue: "#437EEF",
41824
+ orange: "#FF7729",
41825
+ green: "#00E513",
41826
+ fuchsia: "#FB32C9",
41827
+ yellow: "#eef400",
41828
+ violet: "#BB33FF",
41829
+ babyblue: "#00CBEB",
41830
+ red: "#ff2323",
41831
+ teal: "#089B83",
41832
+ sunrise: "#FFC300",
41833
+ slate: "#9a9ea7"
41750
41834
  }
41751
41835
  }
41752
41836
  }
@@ -41785,16 +41869,16 @@ const global$4 = {
41785
41869
  },
41786
41870
  feedback: {
41787
41871
  info: {
41788
- background: "#dae6fc",
41789
- foreground: "#135be6"
41872
+ background: "#E7EFFD",
41873
+ foreground: "#437EEF"
41790
41874
  },
41791
41875
  success: {
41792
41876
  background: "#E5FFE8",
41793
- foreground: "#00990D"
41877
+ foreground: "#008A0B"
41794
41878
  },
41795
41879
  warning: {
41796
- background: "#ffedd8",
41797
- foreground: "#9e5600"
41880
+ background: "#FFE2D1",
41881
+ foreground: "#A33C00"
41798
41882
  },
41799
41883
  danger: {
41800
41884
  background: "#ffdddd",
@@ -41808,12 +41892,30 @@ const global$4 = {
41808
41892
  },
41809
41893
  chart: {
41810
41894
  bars: {
41811
- green: "#00FF15",
41812
- blue: "#6c9af3",
41813
- fuchsia: "#FB64D6",
41814
- orange: "#ffb864",
41815
- violet: "#CC66FF",
41816
- teal: "#00CCAA"
41895
+ blue: "#437EEF",
41896
+ orange: "#FF7729",
41897
+ green: "#00E513",
41898
+ fuchsia: "#FB32C9",
41899
+ yellow: "#eef400",
41900
+ violet: "#BB33FF",
41901
+ babyblue: "#00CBEB",
41902
+ teal: "#089B83",
41903
+ sunrise: "#FFC300",
41904
+ slate: "#9a9ea7",
41905
+ red: "#ff2323"
41906
+ },
41907
+ "default": {
41908
+ blue: "#437EEF",
41909
+ orange: "#FF7729",
41910
+ green: "#00E513",
41911
+ fuchsia: "#FB32C9",
41912
+ yellow: "#eef400",
41913
+ violet: "#BB33FF",
41914
+ babyblue: "#00CBEB",
41915
+ teal: "#089B83",
41916
+ sunrise: "#FFC300",
41917
+ slate: "#9a9ea7",
41918
+ red: "#ff2323"
41817
41919
  }
41818
41920
  },
41819
41921
  iconButton: {
@@ -41854,12 +41956,12 @@ const click$2 = {
41854
41956
  link: {
41855
41957
  label: {
41856
41958
  "default": "#FAFF69",
41857
- hover: "#feffba",
41959
+ hover: "#FEFFC2",
41858
41960
  active: "#FAFF69"
41859
41961
  },
41860
41962
  icon: {
41861
41963
  "default": "#FAFF69",
41862
- hover: "rgb(99.6% 100% 75%)",
41964
+ hover: "rgb(99.6% 100% 77.9%)",
41863
41965
  active: "#FAFF69"
41864
41966
  }
41865
41967
  }
@@ -41872,32 +41974,32 @@ const click$2 = {
41872
41974
  success: "rgb(20% 100% 26.7% / 0.2)",
41873
41975
  neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
41874
41976
  danger: "rgb(100% 13.7% 13.7% / 0.2)",
41875
- warning: "rgb(100% 58% 8.63% / 0.2)",
41876
- info: "rgb(7.45% 35.7% 90.2% / 0.2)"
41977
+ warning: "rgb(100% 46.7% 16.1% / 0.2)",
41978
+ info: "rgb(26.3% 49.4% 93.7% / 0.2)"
41877
41979
  },
41878
41980
  text: {
41879
41981
  "default": "#b3b6bd",
41880
41982
  success: "#CCFFD0",
41881
41983
  neutral: "#c0c0c0",
41882
41984
  danger: "#ffbaba",
41883
- warning: "#ffca8b",
41884
- info: "#b5cdf9"
41985
+ warning: "#FFB88F",
41986
+ info: "#D0DFFB"
41885
41987
  },
41886
41988
  iconBackground: {
41887
41989
  "default": "#1F1F1C",
41888
41990
  success: "rgb(20% 100% 26.7% / 0)",
41889
41991
  neutral: "rgb(62.7% 62.7% 62.7% / 0)",
41890
41992
  danger: "rgb(100% 13.7% 13.7% / 0)",
41891
- warning: "rgb(100% 58% 8.63% / 0)",
41892
- info: "rgb(7.45% 35.7% 90.2% / 0)"
41993
+ warning: "rgb(100% 46.7% 16.1% / 0)",
41994
+ info: "rgb(26.3% 49.4% 93.7% / 0)"
41893
41995
  },
41894
41996
  iconForeground: {
41895
41997
  "default": "#b3b6bd",
41896
41998
  success: "lch(95.6 28.9 144 / 0.75)",
41897
41999
  neutral: "lch(77.7 0 0 / 0.75)",
41898
42000
  danger: "lch(82.1 27.7 22 / 0.75)",
41899
- warning: "lch(85.1 41.3 70.5 / 0.75)",
41900
- info: "lch(81.7 24.6 268 / 0.75)"
42001
+ warning: "lch(80.9 39 53.9 / 0.75)",
42002
+ info: "lch(88.3 15.5 266 / 0.75)"
41901
42003
  }
41902
42004
  }
41903
42005
  },
@@ -41923,8 +42025,8 @@ const click$2 = {
41923
42025
  neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
41924
42026
  danger: "rgb(100% 13.7% 13.7% / 0.2)",
41925
42027
  disabled: "#414141",
41926
- info: "rgb(7.45% 35.7% 90.2% / 0.2)",
41927
- warning: "rgb(100% 58% 8.63% / 0.2)"
42028
+ info: "rgb(26.3% 49.4% 93.7% / 0.2)",
42029
+ warning: "rgb(100% 46.7% 16.1% / 0.2)"
41928
42030
  },
41929
42031
  text: {
41930
42032
  "default": "#b3b6bd",
@@ -41932,8 +42034,8 @@ const click$2 = {
41932
42034
  neutral: "#c0c0c0",
41933
42035
  danger: "#ffbaba",
41934
42036
  disabled: "#808080",
41935
- info: "#b5cdf9",
41936
- warning: "#ffca8b"
42037
+ info: "#D0DFFB",
42038
+ warning: "#FFB88F"
41937
42039
  },
41938
42040
  stroke: {
41939
42041
  "default": "#323232",
@@ -41941,8 +42043,8 @@ const click$2 = {
41941
42043
  neutral: "rgb(62.7% 62.7% 62.7% / 0.1)",
41942
42044
  danger: "rgb(100% 22.3% 22.3% / 0.2)",
41943
42045
  disabled: "rgb(24.2% 24.2% 24.2%)",
41944
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
41945
- warning: "rgb(100% 58% 8.63% / 0.1)"
42046
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
42047
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
41946
42048
  }
41947
42049
  }
41948
42050
  },
@@ -42032,7 +42134,7 @@ const click$2 = {
42032
42134
  empty: {
42033
42135
  text: {
42034
42136
  "default": "#FAFF69",
42035
- hover: "#feffba",
42137
+ hover: "#FEFFC2",
42036
42138
  active: "#FAFF69",
42037
42139
  disabled: "#a0a0a0"
42038
42140
  },
@@ -42131,19 +42233,19 @@ const click$2 = {
42131
42233
  },
42132
42234
  info: {
42133
42235
  background: {
42134
- "default": "rgb(7.45% 35.7% 90.2% / 0.2)",
42135
- hover: "#0e44ad",
42136
- active: "#135be6"
42236
+ "default": "rgb(26.3% 49.4% 93.7% / 0.2)",
42237
+ hover: "#1D64EC",
42238
+ active: "#437EEF"
42137
42239
  },
42138
42240
  text: {
42139
- "default": "#b5cdf9",
42140
- hover: "#b5cdf9",
42141
- active: "#b5cdf9"
42241
+ "default": "#D0DFFB",
42242
+ hover: "#D0DFFB",
42243
+ active: "#D0DFFB"
42142
42244
  },
42143
42245
  stroke: {
42144
- "default": "rgb(7.45% 35.7% 90.2% / 0.2)",
42145
- hover: "#0e44ad",
42146
- active: "#135be6"
42246
+ "default": "rgb(26.3% 49.4% 93.7% / 0.2)",
42247
+ hover: "#1D64EC",
42248
+ active: "#437EEF"
42147
42249
  }
42148
42250
  }
42149
42251
  }
@@ -42451,11 +42553,11 @@ const click$2 = {
42451
42553
  background: {
42452
42554
  "default": "rgb(17.8% 17.8% 17.8%)",
42453
42555
  hover: "rgb(17.8% 17.8% 17.8%)",
42454
- active: "#66FF73",
42556
+ active: "#33FF44",
42455
42557
  disabled: "rgb(17.8% 17.8% 17.8%)"
42456
42558
  },
42457
42559
  stroke: {
42458
- "default": "#00CC11",
42560
+ "default": "#00BD10",
42459
42561
  hover: "#66FF73",
42460
42562
  active: "#66FF73",
42461
42563
  disabled: "#606060"
@@ -42471,13 +42573,13 @@ const click$2 = {
42471
42573
  background: {
42472
42574
  "default": "rgb(17.8% 17.8% 17.8%)",
42473
42575
  hover: "rgb(17.8% 17.8% 17.8%)",
42474
- active: "#6c9af3",
42576
+ active: "#437EEF",
42475
42577
  disabled: "rgb(17.8% 17.8% 17.8%)"
42476
42578
  },
42477
42579
  stroke: {
42478
- "default": "#6c9af3",
42479
- hover: "#91b3f6",
42480
- active: "#91b3f6",
42580
+ "default": "#6D9BF3",
42581
+ hover: "#A1BEF7",
42582
+ active: "#A1BEF7",
42481
42583
  disabled: "#606060"
42482
42584
  },
42483
42585
  check: {
@@ -42511,7 +42613,7 @@ const click$2 = {
42511
42613
  background: {
42512
42614
  "default": "rgb(17.8% 17.8% 17.8%)",
42513
42615
  hover: "rgb(17.8% 17.8% 17.8%)",
42514
- active: "#FAFF69",
42616
+ active: "#FF7729",
42515
42617
  disabled: "rgb(17.8% 17.8% 17.8%)"
42516
42618
  },
42517
42619
  stroke: {
@@ -42531,13 +42633,13 @@ const click$2 = {
42531
42633
  background: {
42532
42634
  "default": "rgb(17.8% 17.8% 17.8%)",
42533
42635
  hover: "rgb(17.8% 17.8% 17.8%)",
42534
- active: "#66FFE5",
42636
+ active: "#6DF8E1",
42535
42637
  disabled: "rgb(17.8% 17.8% 17.8%)"
42536
42638
  },
42537
42639
  stroke: {
42538
- "default": "#66FFE5",
42539
- hover: "#99FFEE",
42540
- active: "#99FFEE",
42640
+ "default": "#6DF8E1",
42641
+ hover: "#A3FAEC",
42642
+ active: "#A3FAEC",
42541
42643
  disabled: "#606060"
42542
42644
  },
42543
42645
  check: {
@@ -43191,7 +43293,7 @@ const click$2 = {
43191
43293
  icon: {
43192
43294
  "default": "rgb(97.5% 97.5% 97.5%)",
43193
43295
  success: "#CCFFD0",
43194
- warning: "#ffca8b",
43296
+ warning: "#FFB88F",
43195
43297
  danger: "#ffbaba"
43196
43298
  }
43197
43299
  }
@@ -43302,24 +43404,24 @@ const click$2 = {
43302
43404
  success: "rgb(20% 100% 26.7% / 0.2)",
43303
43405
  neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
43304
43406
  danger: "rgb(100% 13.7% 13.7% / 0.2)",
43305
- info: "rgb(7.45% 35.7% 90.2% / 0.2)",
43306
- warning: "rgb(100% 58% 8.63% / 0.2)"
43407
+ info: "rgb(26.3% 49.4% 93.7% / 0.2)",
43408
+ warning: "rgb(100% 46.7% 16.1% / 0.2)"
43307
43409
  },
43308
43410
  text: {
43309
43411
  "default": "rgba(0,0,0,0)",
43310
43412
  success: "#CCFFD0",
43311
43413
  neutral: "#c0c0c0",
43312
43414
  danger: "#ffbaba",
43313
- info: "#b5cdf9",
43314
- warning: "#ffca8b"
43415
+ info: "#D0DFFB",
43416
+ warning: "#FFB88F"
43315
43417
  },
43316
43418
  stroke: {
43317
43419
  "default": "rgba(0,0,0,0)",
43318
43420
  success: "rgb(20% 100% 26.7% / 0.05)",
43319
43421
  neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
43320
43422
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
43321
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
43322
- warning: "rgb(100% 58% 8.63% / 0.05)"
43423
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
43424
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
43323
43425
  }
43324
43426
  }
43325
43427
  },
@@ -43369,7 +43471,7 @@ const click$2 = {
43369
43471
  muted: "#b3b6bd",
43370
43472
  link: {
43371
43473
  "default": "#FAFF69",
43372
- hover: "#feffba"
43474
+ hover: "#FEFFC2"
43373
43475
  },
43374
43476
  danger: "#ffbaba"
43375
43477
  },
@@ -43396,16 +43498,16 @@ const click$2 = {
43396
43498
  feedback: {
43397
43499
  color: {
43398
43500
  info: {
43399
- background: "rgb(7.45% 35.7% 90.2% / 0.2)",
43400
- foreground: "#b5cdf9"
43501
+ background: "rgb(26.3% 49.4% 93.7% / 0.2)",
43502
+ foreground: "#D0DFFB"
43401
43503
  },
43402
43504
  success: {
43403
43505
  background: "rgb(20% 100% 26.7% / 0.2)",
43404
43506
  foreground: "#CCFFD0"
43405
43507
  },
43406
43508
  warning: {
43407
- background: "rgb(100% 58% 8.63% / 0.2)",
43408
- foreground: "#ffca8b"
43509
+ background: "rgb(100% 46.7% 16.1% / 0.2)",
43510
+ foreground: "#FFB88F"
43409
43511
  },
43410
43512
  danger: {
43411
43513
  background: "rgb(100% 13.7% 13.7% / 0.2)",
@@ -43426,12 +43528,32 @@ const click$2 = {
43426
43528
  chart: {
43427
43529
  bars: {
43428
43530
  color: {
43429
- green: "#66FF73",
43430
- blue: "#6c9af3",
43531
+ blue: "#437EEF",
43532
+ orange: "#FF7729",
43533
+ green: "#33FF44",
43534
+ fuchsia: "#FB64D6",
43535
+ yellow: "#eef400",
43536
+ violet: "#BB33FF",
43537
+ babyblue: "#00CBEB",
43538
+ red: "#ff2323",
43539
+ teal: "#6DF8E1",
43540
+ sunrise: "#FFC300",
43541
+ slate: "#9a9ea7"
43542
+ }
43543
+ },
43544
+ color: {
43545
+ "default": {
43546
+ blue: "#437EEF",
43547
+ orange: "#FF7729",
43548
+ green: "#33FF44",
43431
43549
  fuchsia: "#FB64D6",
43432
- orange: "#FAFF69",
43550
+ yellow: "#eef400",
43433
43551
  violet: "#BB33FF",
43434
- teal: "#66FFE5"
43552
+ babyblue: "#00CBEB",
43553
+ red: "#ff2323",
43554
+ teal: "#6DF8E1",
43555
+ sunrise: "#FFC300",
43556
+ slate: "#9a9ea7"
43435
43557
  }
43436
43558
  }
43437
43559
  }
@@ -43450,7 +43572,7 @@ const global$3 = {
43450
43572
  muted: "#b3b6bd",
43451
43573
  link: {
43452
43574
  "default": "#FAFF69",
43453
- hover: "#feffba"
43575
+ hover: "#FEFFC2"
43454
43576
  }
43455
43577
  },
43456
43578
  stroke: {
@@ -43470,16 +43592,16 @@ const global$3 = {
43470
43592
  },
43471
43593
  feedback: {
43472
43594
  info: {
43473
- background: "#09255B",
43474
- foreground: "#b5cdf9"
43595
+ background: "#0D3E9B",
43596
+ foreground: "#D0DFFB"
43475
43597
  },
43476
43598
  success: {
43477
43599
  background: "#004206",
43478
43600
  foreground: "#CCFFD0"
43479
43601
  },
43480
43602
  warning: {
43481
- background: "#4f2b00",
43482
- foreground: "#ffca8b"
43603
+ background: "#7A2D00",
43604
+ foreground: "#FFB88F"
43483
43605
  },
43484
43606
  danger: {
43485
43607
  background: "#610000",
@@ -43493,12 +43615,30 @@ const global$3 = {
43493
43615
  },
43494
43616
  chart: {
43495
43617
  bars: {
43496
- green: "#66FF73",
43497
- blue: "#6c9af3",
43618
+ blue: "#437EEF",
43619
+ orange: "#FF7729",
43620
+ green: "#33FF44",
43621
+ fuchsia: "#FB64D6",
43622
+ yellow: "#eef400",
43623
+ violet: "#BB33FF",
43624
+ babyblue: "#00CBEB",
43625
+ danger: "#ff2323",
43626
+ teal: "#6DF8E1",
43627
+ sunrise: "#FFC300",
43628
+ slate: "#9a9ea7"
43629
+ },
43630
+ "default": {
43631
+ blue: "#437EEF",
43632
+ orange: "#FF7729",
43633
+ green: "#33FF44",
43498
43634
  fuchsia: "#FB64D6",
43499
- orange: "#FAFF69",
43635
+ yellow: "#eef400",
43500
43636
  violet: "#BB33FF",
43501
- teal: "#66FFE5"
43637
+ babyblue: "#00CBEB",
43638
+ danger: "#ff2323",
43639
+ teal: "#6DF8E1",
43640
+ sunrise: "#FFC300",
43641
+ slate: "#9a9ea7"
43502
43642
  }
43503
43643
  },
43504
43644
  iconButton: {
@@ -43541,14 +43681,14 @@ const click$1 = {
43541
43681
  },
43542
43682
  link: {
43543
43683
  label: {
43544
- "default": "#135be6",
43545
- hover: "#092e73",
43546
- active: "#135be6"
43684
+ "default": "#437EEF",
43685
+ hover: "#104EC6",
43686
+ active: "#437EEF"
43547
43687
  },
43548
43688
  icon: {
43549
- "default": "#135be6",
43550
- hover: "lch(26.3 42.1 284)",
43551
- active: "#135be6"
43689
+ "default": "#437EEF",
43690
+ hover: "lch(40.8 66.4 286)",
43691
+ active: "#437EEF"
43552
43692
  }
43553
43693
  }
43554
43694
  }
@@ -43560,32 +43700,32 @@ const click$1 = {
43560
43700
  success: "rgb(20% 100% 26.7% / 0.1)",
43561
43701
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43562
43702
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
43563
- warning: "rgb(100% 58% 8.63% / 0.1)",
43564
- info: "rgb(7.45% 35.7% 90.2% / 0.1)"
43703
+ warning: "rgb(100% 46.7% 16.1% / 0.1)",
43704
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)"
43565
43705
  },
43566
43706
  text: {
43567
43707
  "default": "#696e79",
43568
- success: "#00990D",
43708
+ success: "#008A0B",
43569
43709
  neutral: "#53575f",
43570
43710
  danger: "#c10000",
43571
- warning: "#9e5600",
43572
- info: "#135be6"
43711
+ warning: "#A33C00",
43712
+ info: "#437EEF"
43573
43713
  },
43574
43714
  iconBackground: {
43575
43715
  "default": "#ffffff",
43576
43716
  success: "rgb(20% 100% 26.7% / 0)",
43577
43717
  neutral: "rgb(41.2% 43.1% 47.5% / 0)",
43578
43718
  danger: "rgb(100% 13.7% 13.7% / 0)",
43579
- warning: "rgb(100% 58% 8.63% / 0)",
43580
- info: "rgb(7.45% 35.7% 90.2% / 0)"
43719
+ warning: "rgb(100% 46.7% 16.1% / 0)",
43720
+ info: "rgb(26.3% 49.4% 93.7% / 0)"
43581
43721
  },
43582
43722
  iconForeground: {
43583
43723
  "default": "#696e79",
43584
- success: "lch(54.9 75.8 135 / 0.75)",
43724
+ success: "lch(49.8 70.2 135 / 0.75)",
43585
43725
  neutral: "lch(36.8 5.23 267 / 0.75)",
43586
43726
  danger: "lch(41 86.6 40.9 / 0.75)",
43587
- warning: "lch(44.6 59.8 63.2 / 0.75)",
43588
- info: "lch(41.9 80.9 287 / 0.75)"
43727
+ warning: "lch(40.2 66.6 51.1 / 0.75)",
43728
+ info: "lch(53.4 64.6 279 / 0.75)"
43589
43729
  }
43590
43730
  }
43591
43731
  },
@@ -43611,17 +43751,17 @@ const click$1 = {
43611
43751
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43612
43752
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
43613
43753
  disabled: "#dfdfdf",
43614
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
43615
- warning: "rgb(100% 58% 8.63% / 0.1)"
43754
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
43755
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
43616
43756
  },
43617
43757
  text: {
43618
43758
  "default": "#696e79",
43619
- success: "#00990D",
43759
+ success: "#008A0B",
43620
43760
  neutral: "#53575f",
43621
43761
  danger: "#c10000",
43622
43762
  disabled: "#a0a0a0",
43623
- info: "#135be6",
43624
- warning: "#9e5600"
43763
+ info: "#437EEF",
43764
+ warning: "#A33C00"
43625
43765
  },
43626
43766
  stroke: {
43627
43767
  "default": "#e6e7e9",
@@ -43629,8 +43769,8 @@ const click$1 = {
43629
43769
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
43630
43770
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
43631
43771
  disabled: "rgb(83.1% 83.1% 83.1%)",
43632
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
43633
- warning: "rgb(100% 58% 8.63% / 0.05)"
43772
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
43773
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
43634
43774
  }
43635
43775
  }
43636
43776
  },
@@ -43719,9 +43859,9 @@ const click$1 = {
43719
43859
  },
43720
43860
  empty: {
43721
43861
  text: {
43722
- "default": "#135be6",
43723
- hover: "#092e73",
43724
- active: "#135be6",
43862
+ "default": "#437EEF",
43863
+ hover: "#104EC6",
43864
+ active: "#437EEF",
43725
43865
  disabled: "#a0a0a0"
43726
43866
  },
43727
43867
  background: {
@@ -43819,19 +43959,19 @@ const click$1 = {
43819
43959
  },
43820
43960
  info: {
43821
43961
  background: {
43822
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
43823
- hover: "#b5cdf9",
43824
- active: "#91b3f6"
43962
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
43963
+ hover: "#D0DFFB",
43964
+ active: "#A1BEF7"
43825
43965
  },
43826
43966
  text: {
43827
- "default": "#135be6",
43828
- hover: "#135be6",
43829
- active: "#135be6"
43967
+ "default": "#437EEF",
43968
+ hover: "#437EEF",
43969
+ active: "#437EEF"
43830
43970
  },
43831
43971
  stroke: {
43832
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
43833
- hover: "#b5cdf9",
43834
- active: "#91b3f6"
43972
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
43973
+ hover: "#D0DFFB",
43974
+ active: "#A1BEF7"
43835
43975
  }
43836
43976
  }
43837
43977
  }
@@ -43982,7 +44122,7 @@ const click$1 = {
43982
44122
  },
43983
44123
  link: {
43984
44124
  "default": "#161517",
43985
- hover: "#135be6",
44125
+ hover: "#437EEF",
43986
44126
  active: "#161517",
43987
44127
  disabled: "#a0a0a0"
43988
44128
  },
@@ -44133,7 +44273,7 @@ const click$1 = {
44133
44273
  background: {
44134
44274
  "default": "#f6f7fa",
44135
44275
  hover: "#f6f7fa",
44136
- active: "#62de85",
44276
+ active: "#00E513",
44137
44277
  disabled: "#dfdfdf"
44138
44278
  },
44139
44279
  stroke: {
@@ -44153,13 +44293,13 @@ const click$1 = {
44153
44293
  background: {
44154
44294
  "default": "#f6f7fa",
44155
44295
  hover: "#f6f7fa",
44156
- active: "#6c9af3",
44296
+ active: "#437EEF",
44157
44297
  disabled: "#dfdfdf"
44158
44298
  },
44159
44299
  stroke: {
44160
- "default": "#6c9af3",
44161
- hover: "#6c9af3",
44162
- active: "#6c9af3",
44300
+ "default": "#6D9BF3",
44301
+ hover: "#6D9BF3",
44302
+ active: "#6D9BF3",
44163
44303
  disabled: "#c0c0c0"
44164
44304
  },
44165
44305
  check: {
@@ -44173,7 +44313,7 @@ const click$1 = {
44173
44313
  background: {
44174
44314
  "default": "#f6f7fa",
44175
44315
  hover: "#f6f7fa",
44176
- active: "#FB64D6",
44316
+ active: "#FB32C9",
44177
44317
  disabled: "#dfdfdf"
44178
44318
  },
44179
44319
  stroke: {
@@ -44193,13 +44333,13 @@ const click$1 = {
44193
44333
  background: {
44194
44334
  "default": "#f6f7fa",
44195
44335
  hover: "#f6f7fa",
44196
- active: "#ffb864",
44336
+ active: "#FF7729",
44197
44337
  disabled: "#dfdfdf"
44198
44338
  },
44199
44339
  stroke: {
44200
- "default": "#ffb864",
44201
- hover: "#ffb864",
44202
- active: "#ffb864",
44340
+ "default": "#FF9457",
44341
+ hover: "#FF9457",
44342
+ active: "#FF9457",
44203
44343
  disabled: "#c0c0c0"
44204
44344
  },
44205
44345
  check: {
@@ -44213,13 +44353,13 @@ const click$1 = {
44213
44353
  background: {
44214
44354
  "default": "#f6f7fa",
44215
44355
  hover: "#f6f7fa",
44216
- active: "#00CCAA",
44356
+ active: "#089B83",
44217
44357
  disabled: "#dfdfdf"
44218
44358
  },
44219
44359
  stroke: {
44220
- "default": "#00CCAA",
44221
- hover: "#00CCAA",
44222
- active: "#00CCAA",
44360
+ "default": "#089B83",
44361
+ hover: "#089B83",
44362
+ active: "#089B83",
44223
44363
  disabled: "#c0c0c0"
44224
44364
  },
44225
44365
  check: {
@@ -44233,7 +44373,7 @@ const click$1 = {
44233
44373
  background: {
44234
44374
  "default": "#f6f7fa",
44235
44375
  hover: "#f6f7fa",
44236
- active: "#CC66FF",
44376
+ active: "#BB33FF",
44237
44377
  disabled: "#dfdfdf"
44238
44378
  },
44239
44379
  stroke: {
@@ -44756,7 +44896,7 @@ const click$1 = {
44756
44896
  background: {
44757
44897
  "default": "#f6f7fa",
44758
44898
  hover: "#f6f7fa",
44759
- active: "rgb(85% 89.5% 97.8%)"
44899
+ active: "rgb(89.8% 92.8% 98.1%)"
44760
44900
  },
44761
44901
  title: {
44762
44902
  "default": "#161517"
@@ -44778,8 +44918,8 @@ const click$1 = {
44778
44918
  color: {
44779
44919
  background: {
44780
44920
  "default": "#ffffff",
44781
- hover: "lch(90.9 12.2 266 / 0.2)",
44782
- active: "rgb(85.9% 90.4% 98.9% / 0.2)"
44921
+ hover: "lch(94.1 7.78 264 / 0.2)",
44922
+ active: "rgb(90.8% 93.8% 99.2% / 0.2)"
44783
44923
  },
44784
44924
  stroke: {
44785
44925
  "default": "#e6e7e9"
@@ -44788,7 +44928,7 @@ const click$1 = {
44788
44928
  "default": "#161517"
44789
44929
  },
44790
44930
  link: {
44791
- "default": "#135be6"
44931
+ "default": "#437EEF"
44792
44932
  },
44793
44933
  label: {
44794
44934
  "default": "#696e79"
@@ -44868,8 +45008,8 @@ const click$1 = {
44868
45008
  },
44869
45009
  icon: {
44870
45010
  "default": "lch(11.1 1.37 305)",
44871
- success: "#00990D",
44872
- warning: "#9e5600",
45011
+ success: "#008A0B",
45012
+ warning: "#A33C00",
44873
45013
  danger: "#c10000"
44874
45014
  }
44875
45015
  }
@@ -44922,8 +45062,8 @@ const click$1 = {
44922
45062
  color: {
44923
45063
  background: {
44924
45064
  "default": "#f6f7fa",
44925
- selectIndirect: "lch(93.2 9.14 266)",
44926
- selectDirect: "lch(90 12.1 266)"
45065
+ selectIndirect: "lch(95.6 5.84 264)",
45066
+ selectDirect: "lch(93.2 7.7 264)"
44927
45067
  },
44928
45068
  title: {
44929
45069
  "default": "#696e79",
@@ -44932,8 +45072,8 @@ const click$1 = {
44932
45072
  },
44933
45073
  stroke: {
44934
45074
  "default": "lch(89.3 1.07 266)",
44935
- selectIndirect: "lch(88.6 11.9 266)",
44936
- selectDirect: "lch(79.7 24 268)"
45075
+ selectIndirect: "lch(91.8 7.59 264)",
45076
+ selectDirect: "lch(86.1 15.1 266)"
44937
45077
  }
44938
45078
  }
44939
45079
  }
@@ -44943,13 +45083,13 @@ const click$1 = {
44943
45083
  color: {
44944
45084
  background: {
44945
45085
  "default": "#ffffff",
44946
- selectIndirect: "lch(90.9 12.2 266 / 0.2)",
44947
- selectDirect: "lch(90.9 12.2 266 / 0.2)"
45086
+ selectIndirect: "lch(94.1 7.78 264 / 0.2)",
45087
+ selectDirect: "lch(94.1 7.78 264 / 0.2)"
44948
45088
  },
44949
45089
  stroke: {
44950
45090
  "default": "#e6e7e9",
44951
- selectIndirect: "lch(65.4 19.7 268)",
44952
- selectDirect: "#135be6"
45091
+ selectIndirect: "lch(70.7 12.4 266)",
45092
+ selectDirect: "#437EEF"
44953
45093
  },
44954
45094
  text: {
44955
45095
  "default": "lch(7.17 1.44 305)",
@@ -44977,24 +45117,24 @@ const click$1 = {
44977
45117
  success: "rgb(20% 100% 26.7% / 0.1)",
44978
45118
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
44979
45119
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
44980
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
44981
- warning: "rgb(100% 58% 8.63% / 0.1)"
45120
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
45121
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
44982
45122
  },
44983
45123
  text: {
44984
45124
  "default": "rgba(0,0,0,0)",
44985
- success: "#00990D",
45125
+ success: "#008A0B",
44986
45126
  neutral: "#53575f",
44987
45127
  danger: "#c10000",
44988
- info: "#135be6",
44989
- warning: "#9e5600"
45128
+ info: "#437EEF",
45129
+ warning: "#A33C00"
44990
45130
  },
44991
45131
  stroke: {
44992
45132
  "default": "rgba(0,0,0,0)",
44993
45133
  success: "rgb(20% 100% 26.7% / 0.05)",
44994
45134
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
44995
45135
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
44996
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
44997
- warning: "rgb(100% 58% 8.63% / 0.05)"
45136
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
45137
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
44998
45138
  }
44999
45139
  }
45000
45140
  },
@@ -45043,8 +45183,8 @@ const click$1 = {
45043
45183
  "default": "#161517",
45044
45184
  muted: "#696e79",
45045
45185
  link: {
45046
- "default": "#135be6",
45047
- hover: "#092e73"
45186
+ "default": "#437EEF",
45187
+ hover: "#104EC6"
45048
45188
  },
45049
45189
  danger: "#c10000"
45050
45190
  },
@@ -45057,7 +45197,7 @@ const click$1 = {
45057
45197
  "default": "#151515"
45058
45198
  },
45059
45199
  outline: {
45060
- "default": "#135be6"
45200
+ "default": "#437EEF"
45061
45201
  },
45062
45202
  shadow: {
45063
45203
  "default": "lch(6.77 0 0 / 0.15)"
@@ -45071,16 +45211,16 @@ const click$1 = {
45071
45211
  feedback: {
45072
45212
  color: {
45073
45213
  info: {
45074
- background: "rgb(7.45% 35.7% 90.2% / 0.1)",
45075
- foreground: "#135be6"
45214
+ background: "rgb(26.3% 49.4% 93.7% / 0.1)",
45215
+ foreground: "#437EEF"
45076
45216
  },
45077
45217
  success: {
45078
45218
  background: "rgb(20% 100% 26.7% / 0.1)",
45079
- foreground: "#00990D"
45219
+ foreground: "#008A0B"
45080
45220
  },
45081
45221
  warning: {
45082
- background: "rgb(100% 58% 8.63% / 0.1)",
45083
- foreground: "#9e5600"
45222
+ background: "rgb(100% 46.7% 16.1% / 0.1)",
45223
+ foreground: "#A33C00"
45084
45224
  },
45085
45225
  danger: {
45086
45226
  background: "rgb(100% 13.7% 13.7% / 0.1)",
@@ -45101,12 +45241,32 @@ const click$1 = {
45101
45241
  chart: {
45102
45242
  bars: {
45103
45243
  color: {
45104
- green: "#62de85",
45105
- blue: "#6c9af3",
45106
- fuchsia: "#FB64D6",
45107
- orange: "#ffb864",
45108
- violet: "#CC66FF",
45109
- teal: "#00CCAA"
45244
+ blue: "#437EEF",
45245
+ orange: "#FF7729",
45246
+ green: "#00E513",
45247
+ fuchsia: "#FB32C9",
45248
+ yellow: "#eef400",
45249
+ violet: "#BB33FF",
45250
+ babyblue: "#00CBEB",
45251
+ red: "#ff2323",
45252
+ teal: "#089B83",
45253
+ sunrise: "#FFC300",
45254
+ slate: "#9a9ea7"
45255
+ }
45256
+ },
45257
+ color: {
45258
+ "default": {
45259
+ blue: "#437EEF",
45260
+ orange: "#FF7729",
45261
+ green: "#00E513",
45262
+ fuchsia: "#FB32C9",
45263
+ yellow: "#eef400",
45264
+ violet: "#BB33FF",
45265
+ babyblue: "#00CBEB",
45266
+ red: "#ff2323",
45267
+ teal: "#089B83",
45268
+ sunrise: "#FFC300",
45269
+ slate: "#9a9ea7"
45110
45270
  }
45111
45271
  }
45112
45272
  }
@@ -45125,8 +45285,8 @@ const global$2 = {
45125
45285
  "default": "#161517",
45126
45286
  muted: "#696e79",
45127
45287
  link: {
45128
- "default": "#135be6",
45129
- hover: "#092e73"
45288
+ "default": "#437EEF",
45289
+ hover: "#104EC6"
45130
45290
  }
45131
45291
  },
45132
45292
  stroke: {
@@ -45139,23 +45299,23 @@ const global$2 = {
45139
45299
  "default": "#151515"
45140
45300
  },
45141
45301
  outline: {
45142
- "default": "#135be6"
45302
+ "default": "#437EEF"
45143
45303
  },
45144
45304
  shadow: {
45145
45305
  "default": "lch(6.77 0 0 / 0.15)"
45146
45306
  },
45147
45307
  feedback: {
45148
45308
  info: {
45149
- background: "#dae6fc",
45150
- foreground: "#135be6"
45309
+ background: "#E7EFFD",
45310
+ foreground: "#437EEF"
45151
45311
  },
45152
45312
  success: {
45153
45313
  background: "#E5FFE8",
45154
- foreground: "#00990D"
45314
+ foreground: "#008A0B"
45155
45315
  },
45156
45316
  warning: {
45157
- background: "#ffedd8",
45158
- foreground: "#9e5600"
45317
+ background: "#FFE2D1",
45318
+ foreground: "#A33C00"
45159
45319
  },
45160
45320
  danger: {
45161
45321
  background: "#ffdddd",
@@ -45169,18 +45329,36 @@ const global$2 = {
45169
45329
  },
45170
45330
  chart: {
45171
45331
  bars: {
45172
- green: "#62de85",
45173
- blue: "#6c9af3",
45174
- fuchsia: "#FB64D6",
45175
- orange: "#ffb864",
45176
- violet: "#CC66FF",
45177
- teal: "#00CCAA"
45332
+ blue: "#437EEF",
45333
+ orange: "#FF7729",
45334
+ green: "#00E513",
45335
+ fuchsia: "#FB32C9",
45336
+ yellow: "#eef400",
45337
+ violet: "#BB33FF",
45338
+ babyblue: "#00CBEB",
45339
+ teal: "#089B83",
45340
+ sunrise: "#FFC300",
45341
+ slate: "#9a9ea7",
45342
+ red: "#ff2323"
45343
+ },
45344
+ "default": {
45345
+ blue: "#437EEF",
45346
+ orange: "#FF7729",
45347
+ green: "#00E513",
45348
+ fuchsia: "#FB32C9",
45349
+ yellow: "#eef400",
45350
+ violet: "#BB33FF",
45351
+ babyblue: "#00CBEB",
45352
+ teal: "#089B83",
45353
+ sunrise: "#FFC300",
45354
+ slate: "#9a9ea7",
45355
+ red: "#ff2323"
45178
45356
  }
45179
45357
  },
45180
45358
  iconButton: {
45181
45359
  badge: {
45182
- foreground: "#135be6",
45183
- background: "#dae6fc"
45360
+ foreground: "#437EEF",
45361
+ background: "#E7EFFD"
45184
45362
  }
45185
45363
  },
45186
45364
  icon: {
@@ -45271,14 +45449,14 @@ const click = {
45271
45449
  },
45272
45450
  link: {
45273
45451
  label: {
45274
- "default": "#135be6",
45275
- hover: "#092e73",
45276
- active: "#135be6"
45452
+ "default": "#437EEF",
45453
+ hover: "#104EC6",
45454
+ active: "#437EEF"
45277
45455
  },
45278
45456
  icon: {
45279
- "default": "#135be6",
45280
- hover: "lch(26.3 42.1 284)",
45281
- active: "#135be6"
45457
+ "default": "#437EEF",
45458
+ hover: "lch(40.8 66.4 286)",
45459
+ active: "#437EEF"
45282
45460
  }
45283
45461
  }
45284
45462
  }
@@ -45332,32 +45510,32 @@ const click = {
45332
45510
  success: "rgb(20% 100% 26.7% / 0.1)",
45333
45511
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45334
45512
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
45335
- warning: "rgb(100% 58% 8.63% / 0.1)",
45336
- info: "rgb(7.45% 35.7% 90.2% / 0.1)"
45513
+ warning: "rgb(100% 46.7% 16.1% / 0.1)",
45514
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)"
45337
45515
  },
45338
45516
  text: {
45339
45517
  "default": "#696e79",
45340
- success: "#00990D",
45518
+ success: "#008A0B",
45341
45519
  neutral: "#53575f",
45342
45520
  danger: "#c10000",
45343
- warning: "#9e5600",
45344
- info: "#135be6"
45521
+ warning: "#A33C00",
45522
+ info: "#437EEF"
45345
45523
  },
45346
45524
  iconBackground: {
45347
45525
  "default": "#ffffff",
45348
45526
  success: "rgb(20% 100% 26.7% / 0)",
45349
45527
  neutral: "rgb(41.2% 43.1% 47.5% / 0)",
45350
45528
  danger: "rgb(100% 13.7% 13.7% / 0)",
45351
- warning: "rgb(100% 58% 8.63% / 0)",
45352
- info: "rgb(7.45% 35.7% 90.2% / 0)"
45529
+ warning: "rgb(100% 46.7% 16.1% / 0)",
45530
+ info: "rgb(26.3% 49.4% 93.7% / 0)"
45353
45531
  },
45354
45532
  iconForeground: {
45355
45533
  "default": "#696e79",
45356
- success: "lch(54.9 75.8 135 / 0.75)",
45534
+ success: "lch(49.8 70.2 135 / 0.75)",
45357
45535
  neutral: "lch(36.8 5.23 267 / 0.75)",
45358
45536
  danger: "lch(41 86.6 40.9 / 0.75)",
45359
- warning: "lch(44.6 59.8 63.2 / 0.75)",
45360
- info: "lch(41.9 80.9 287 / 0.75)"
45537
+ warning: "lch(40.2 66.6 51.1 / 0.75)",
45538
+ info: "lch(53.4 64.6 279 / 0.75)"
45361
45539
  }
45362
45540
  }
45363
45541
  },
@@ -45447,17 +45625,17 @@ const click = {
45447
45625
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45448
45626
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
45449
45627
  disabled: "#dfdfdf",
45450
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
45451
- warning: "rgb(100% 58% 8.63% / 0.1)"
45628
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
45629
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
45452
45630
  },
45453
45631
  text: {
45454
45632
  "default": "#696e79",
45455
- success: "#00990D",
45633
+ success: "#008A0B",
45456
45634
  neutral: "#53575f",
45457
45635
  danger: "#c10000",
45458
45636
  disabled: "#a0a0a0",
45459
- info: "#135be6",
45460
- warning: "#9e5600"
45637
+ info: "#437EEF",
45638
+ warning: "#A33C00"
45461
45639
  },
45462
45640
  stroke: {
45463
45641
  "default": "#e6e7e9",
@@ -45465,8 +45643,8 @@ const click = {
45465
45643
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
45466
45644
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
45467
45645
  disabled: "rgb(83.1% 83.1% 83.1%)",
45468
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
45469
- warning: "rgb(100% 58% 8.63% / 0.05)"
45646
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
45647
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
45470
45648
  }
45471
45649
  }
45472
45650
  },
@@ -45621,9 +45799,9 @@ const click = {
45621
45799
  },
45622
45800
  empty: {
45623
45801
  text: {
45624
- "default": "#135be6",
45625
- hover: "#092e73",
45626
- active: "#135be6",
45802
+ "default": "#437EEF",
45803
+ hover: "#104EC6",
45804
+ active: "#437EEF",
45627
45805
  disabled: "#a0a0a0"
45628
45806
  },
45629
45807
  background: {
@@ -45747,19 +45925,19 @@ const click = {
45747
45925
  },
45748
45926
  info: {
45749
45927
  background: {
45750
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
45751
- hover: "#b5cdf9",
45752
- active: "#91b3f6"
45928
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
45929
+ hover: "#D0DFFB",
45930
+ active: "#A1BEF7"
45753
45931
  },
45754
45932
  text: {
45755
- "default": "#135be6",
45756
- hover: "#135be6",
45757
- active: "#135be6"
45933
+ "default": "#437EEF",
45934
+ hover: "#437EEF",
45935
+ active: "#437EEF"
45758
45936
  },
45759
45937
  stroke: {
45760
- "default": "rgb(7.45% 35.7% 90.2% / 0.1)",
45761
- hover: "#b5cdf9",
45762
- active: "#91b3f6"
45938
+ "default": "rgb(26.3% 49.4% 93.7% / 0.1)",
45939
+ hover: "#D0DFFB",
45940
+ active: "#A1BEF7"
45763
45941
  }
45764
45942
  }
45765
45943
  }
@@ -46021,7 +46199,7 @@ const click = {
46021
46199
  },
46022
46200
  link: {
46023
46201
  "default": "#161517",
46024
- hover: "#135be6",
46202
+ hover: "#437EEF",
46025
46203
  active: "#161517",
46026
46204
  disabled: "#a0a0a0"
46027
46205
  },
@@ -46288,7 +46466,7 @@ const click = {
46288
46466
  background: {
46289
46467
  "default": "#f6f7fa",
46290
46468
  hover: "#f6f7fa",
46291
- active: "#62de85",
46469
+ active: "#00E513",
46292
46470
  disabled: "#dfdfdf"
46293
46471
  },
46294
46472
  stroke: {
@@ -46308,13 +46486,13 @@ const click = {
46308
46486
  background: {
46309
46487
  "default": "#f6f7fa",
46310
46488
  hover: "#f6f7fa",
46311
- active: "#6c9af3",
46489
+ active: "#437EEF",
46312
46490
  disabled: "#dfdfdf"
46313
46491
  },
46314
46492
  stroke: {
46315
- "default": "#6c9af3",
46316
- hover: "#6c9af3",
46317
- active: "#6c9af3",
46493
+ "default": "#6D9BF3",
46494
+ hover: "#6D9BF3",
46495
+ active: "#6D9BF3",
46318
46496
  disabled: "#c0c0c0"
46319
46497
  },
46320
46498
  check: {
@@ -46328,7 +46506,7 @@ const click = {
46328
46506
  background: {
46329
46507
  "default": "#f6f7fa",
46330
46508
  hover: "#f6f7fa",
46331
- active: "#FB64D6",
46509
+ active: "#FB32C9",
46332
46510
  disabled: "#dfdfdf"
46333
46511
  },
46334
46512
  stroke: {
@@ -46348,13 +46526,13 @@ const click = {
46348
46526
  background: {
46349
46527
  "default": "#f6f7fa",
46350
46528
  hover: "#f6f7fa",
46351
- active: "#ffb864",
46529
+ active: "#FF7729",
46352
46530
  disabled: "#dfdfdf"
46353
46531
  },
46354
46532
  stroke: {
46355
- "default": "#ffb864",
46356
- hover: "#ffb864",
46357
- active: "#ffb864",
46533
+ "default": "#FF9457",
46534
+ hover: "#FF9457",
46535
+ active: "#FF9457",
46358
46536
  disabled: "#c0c0c0"
46359
46537
  },
46360
46538
  check: {
@@ -46368,13 +46546,13 @@ const click = {
46368
46546
  background: {
46369
46547
  "default": "#f6f7fa",
46370
46548
  hover: "#f6f7fa",
46371
- active: "#00CCAA",
46549
+ active: "#089B83",
46372
46550
  disabled: "#dfdfdf"
46373
46551
  },
46374
46552
  stroke: {
46375
- "default": "#00CCAA",
46376
- hover: "#00CCAA",
46377
- active: "#00CCAA",
46553
+ "default": "#089B83",
46554
+ hover: "#089B83",
46555
+ active: "#089B83",
46378
46556
  disabled: "#c0c0c0"
46379
46557
  },
46380
46558
  check: {
@@ -46388,7 +46566,7 @@ const click = {
46388
46566
  background: {
46389
46567
  "default": "#f6f7fa",
46390
46568
  hover: "#f6f7fa",
46391
- active: "#CC66FF",
46569
+ active: "#BB33FF",
46392
46570
  disabled: "#dfdfdf"
46393
46571
  },
46394
46572
  stroke: {
@@ -47492,7 +47670,7 @@ const click = {
47492
47670
  background: {
47493
47671
  "default": "#f6f7fa",
47494
47672
  hover: "#f6f7fa",
47495
- active: "rgb(85% 89.5% 97.8%)"
47673
+ active: "rgb(89.8% 92.8% 98.1%)"
47496
47674
  },
47497
47675
  title: {
47498
47676
  "default": "#161517"
@@ -47549,8 +47727,8 @@ const click = {
47549
47727
  color: {
47550
47728
  background: {
47551
47729
  "default": "#ffffff",
47552
- hover: "lch(90.9 12.2 266 / 0.2)",
47553
- active: "rgb(85.9% 90.4% 98.9% / 0.2)"
47730
+ hover: "lch(94.1 7.78 264 / 0.2)",
47731
+ active: "rgb(90.8% 93.8% 99.2% / 0.2)"
47554
47732
  },
47555
47733
  stroke: {
47556
47734
  "default": "#e6e7e9"
@@ -47559,7 +47737,7 @@ const click = {
47559
47737
  "default": "#161517"
47560
47738
  },
47561
47739
  link: {
47562
- "default": "#135be6"
47740
+ "default": "#437EEF"
47563
47741
  },
47564
47742
  label: {
47565
47743
  "default": "#696e79"
@@ -47709,8 +47887,8 @@ const click = {
47709
47887
  },
47710
47888
  icon: {
47711
47889
  "default": "lch(11.1 1.37 305)",
47712
- success: "#00990D",
47713
- warning: "#9e5600",
47890
+ success: "#008A0B",
47891
+ warning: "#A33C00",
47714
47892
  danger: "#c10000"
47715
47893
  }
47716
47894
  }
@@ -47900,8 +48078,8 @@ const click = {
47900
48078
  color: {
47901
48079
  background: {
47902
48080
  "default": "#f6f7fa",
47903
- selectIndirect: "lch(93.2 9.14 266)",
47904
- selectDirect: "lch(90 12.1 266)"
48081
+ selectIndirect: "lch(95.6 5.84 264)",
48082
+ selectDirect: "lch(93.2 7.7 264)"
47905
48083
  },
47906
48084
  title: {
47907
48085
  "default": "#696e79",
@@ -47910,8 +48088,8 @@ const click = {
47910
48088
  },
47911
48089
  stroke: {
47912
48090
  "default": "lch(89.3 1.07 266)",
47913
- selectIndirect: "lch(88.6 11.9 266)",
47914
- selectDirect: "lch(79.7 24 268)"
48091
+ selectIndirect: "lch(91.8 7.59 264)",
48092
+ selectDirect: "lch(86.1 15.1 266)"
47915
48093
  }
47916
48094
  }
47917
48095
  },
@@ -47931,13 +48109,13 @@ const click = {
47931
48109
  color: {
47932
48110
  background: {
47933
48111
  "default": "#ffffff",
47934
- selectIndirect: "lch(90.9 12.2 266 / 0.2)",
47935
- selectDirect: "lch(90.9 12.2 266 / 0.2)"
48112
+ selectIndirect: "lch(94.1 7.78 264 / 0.2)",
48113
+ selectDirect: "lch(94.1 7.78 264 / 0.2)"
47936
48114
  },
47937
48115
  stroke: {
47938
48116
  "default": "#e6e7e9",
47939
- selectIndirect: "lch(65.4 19.7 268)",
47940
- selectDirect: "#135be6"
48117
+ selectIndirect: "lch(70.7 12.4 266)",
48118
+ selectDirect: "#437EEF"
47941
48119
  },
47942
48120
  text: {
47943
48121
  "default": "lch(7.17 1.44 305)",
@@ -48031,24 +48209,24 @@ const click = {
48031
48209
  success: "rgb(20% 100% 26.7% / 0.1)",
48032
48210
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
48033
48211
  danger: "rgb(100% 13.7% 13.7% / 0.1)",
48034
- info: "rgb(7.45% 35.7% 90.2% / 0.1)",
48035
- warning: "rgb(100% 58% 8.63% / 0.1)"
48212
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
48213
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
48036
48214
  },
48037
48215
  text: {
48038
48216
  "default": "rgba(0,0,0,0)",
48039
- success: "#00990D",
48217
+ success: "#008A0B",
48040
48218
  neutral: "#53575f",
48041
48219
  danger: "#c10000",
48042
- info: "#135be6",
48043
- warning: "#9e5600"
48220
+ info: "#437EEF",
48221
+ warning: "#A33C00"
48044
48222
  },
48045
48223
  stroke: {
48046
48224
  "default": "rgba(0,0,0,0)",
48047
48225
  success: "rgb(20% 100% 26.7% / 0.05)",
48048
48226
  neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
48049
48227
  danger: "rgb(100% 13.7% 13.7% / 0.05)",
48050
- info: "rgb(7.45% 35.7% 90.2% / 0.05)",
48051
- warning: "rgb(100% 58% 8.63% / 0.05)"
48228
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
48229
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
48052
48230
  }
48053
48231
  }
48054
48232
  },
@@ -48129,8 +48307,8 @@ const click = {
48129
48307
  "default": "#161517",
48130
48308
  muted: "#696e79",
48131
48309
  link: {
48132
- "default": "#135be6",
48133
- hover: "#092e73"
48310
+ "default": "#437EEF",
48311
+ hover: "#104EC6"
48134
48312
  },
48135
48313
  danger: "#c10000"
48136
48314
  },
@@ -48143,7 +48321,7 @@ const click = {
48143
48321
  "default": "#151515"
48144
48322
  },
48145
48323
  outline: {
48146
- "default": "#135be6"
48324
+ "default": "#437EEF"
48147
48325
  },
48148
48326
  shadow: {
48149
48327
  "default": "lch(6.77 0 0 / 0.15)"
@@ -48157,16 +48335,16 @@ const click = {
48157
48335
  feedback: {
48158
48336
  color: {
48159
48337
  info: {
48160
- background: "rgb(7.45% 35.7% 90.2% / 0.1)",
48161
- foreground: "#135be6"
48338
+ background: "rgb(26.3% 49.4% 93.7% / 0.1)",
48339
+ foreground: "#437EEF"
48162
48340
  },
48163
48341
  success: {
48164
48342
  background: "rgb(20% 100% 26.7% / 0.1)",
48165
- foreground: "#00990D"
48343
+ foreground: "#008A0B"
48166
48344
  },
48167
48345
  warning: {
48168
- background: "rgb(100% 58% 8.63% / 0.1)",
48169
- foreground: "#9e5600"
48346
+ background: "rgb(100% 46.7% 16.1% / 0.1)",
48347
+ foreground: "#A33C00"
48170
48348
  },
48171
48349
  danger: {
48172
48350
  background: "rgb(100% 13.7% 13.7% / 0.1)",
@@ -48187,12 +48365,32 @@ const click = {
48187
48365
  chart: {
48188
48366
  bars: {
48189
48367
  color: {
48190
- green: "#62de85",
48191
- blue: "#6c9af3",
48192
- fuchsia: "#FB64D6",
48193
- orange: "#ffb864",
48194
- violet: "#CC66FF",
48195
- teal: "#00CCAA"
48368
+ blue: "#437EEF",
48369
+ orange: "#FF7729",
48370
+ green: "#00E513",
48371
+ fuchsia: "#FB32C9",
48372
+ yellow: "#eef400",
48373
+ violet: "#BB33FF",
48374
+ babyblue: "#00CBEB",
48375
+ red: "#ff2323",
48376
+ teal: "#089B83",
48377
+ sunrise: "#FFC300",
48378
+ slate: "#9a9ea7"
48379
+ }
48380
+ },
48381
+ color: {
48382
+ "default": {
48383
+ blue: "#437EEF",
48384
+ orange: "#FF7729",
48385
+ green: "#00E513",
48386
+ fuchsia: "#FB32C9",
48387
+ yellow: "#eef400",
48388
+ violet: "#BB33FF",
48389
+ babyblue: "#00CBEB",
48390
+ red: "#ff2323",
48391
+ teal: "#089B83",
48392
+ sunrise: "#FFC300",
48393
+ slate: "#9a9ea7"
48196
48394
  }
48197
48395
  }
48198
48396
  }
@@ -48249,8 +48447,8 @@ const global$1 = {
48249
48447
  "default": "#161517",
48250
48448
  muted: "#696e79",
48251
48449
  link: {
48252
- "default": "#135be6",
48253
- hover: "#092e73"
48450
+ "default": "#437EEF",
48451
+ hover: "#104EC6"
48254
48452
  }
48255
48453
  },
48256
48454
  stroke: {
@@ -48263,23 +48461,23 @@ const global$1 = {
48263
48461
  "default": "#151515"
48264
48462
  },
48265
48463
  outline: {
48266
- "default": "#135be6"
48464
+ "default": "#437EEF"
48267
48465
  },
48268
48466
  shadow: {
48269
48467
  "default": "lch(6.77 0 0 / 0.15)"
48270
48468
  },
48271
48469
  feedback: {
48272
48470
  info: {
48273
- background: "#dae6fc",
48274
- foreground: "#135be6"
48471
+ background: "#E7EFFD",
48472
+ foreground: "#437EEF"
48275
48473
  },
48276
48474
  success: {
48277
48475
  background: "#E5FFE8",
48278
- foreground: "#00990D"
48476
+ foreground: "#008A0B"
48279
48477
  },
48280
48478
  warning: {
48281
- background: "#ffedd8",
48282
- foreground: "#9e5600"
48479
+ background: "#FFE2D1",
48480
+ foreground: "#A33C00"
48283
48481
  },
48284
48482
  danger: {
48285
48483
  background: "#ffdddd",
@@ -48293,18 +48491,38 @@ const global$1 = {
48293
48491
  },
48294
48492
  chart: {
48295
48493
  bars: {
48296
- green: "#62de85",
48297
- blue: "#6c9af3",
48298
- fuchsia: "#FB64D6",
48299
- orange: "#ffb864",
48300
- violet: "#CC66FF",
48301
- teal: "#00CCAA"
48494
+ blue: "#437EEF",
48495
+ orange: "#FF7729",
48496
+ green: "#00E513",
48497
+ fuchsia: "#FB32C9",
48498
+ yellow: "#eef400",
48499
+ violet: "#BB33FF",
48500
+ babyblue: "#00CBEB",
48501
+ danger: "#ff2323",
48502
+ teal: "#089B83",
48503
+ sunrise: "#FFC300",
48504
+ slate: "#9a9ea7",
48505
+ red: "#ff2323"
48506
+ },
48507
+ "default": {
48508
+ blue: "#437EEF",
48509
+ orange: "#FF7729",
48510
+ green: "#00E513",
48511
+ fuchsia: "#FB32C9",
48512
+ yellow: "#eef400",
48513
+ violet: "#BB33FF",
48514
+ babyblue: "#00CBEB",
48515
+ danger: "#ff2323",
48516
+ teal: "#089B83",
48517
+ sunrise: "#FFC300",
48518
+ slate: "#9a9ea7",
48519
+ red: "#ff2323"
48302
48520
  }
48303
48521
  },
48304
48522
  iconButton: {
48305
48523
  badge: {
48306
- foreground: "#135be6",
48307
- background: "#dae6fc"
48524
+ foreground: "#437EEF",
48525
+ background: "#E7EFFD"
48308
48526
  }
48309
48527
  },
48310
48528
  icon: {
@@ -48319,14 +48537,15 @@ const global$1 = {
48319
48537
  const palette = {
48320
48538
  brand: {
48321
48539
  "50": "#ffffe8",
48322
- "100": "#feffba",
48540
+ "100": "#FEFFC2",
48323
48541
  "200": "#fdffa3",
48324
48542
  "300": "#FAFF69",
48325
48543
  "400": "#eef400",
48326
- "500": "#9fa300",
48327
- "600": "#4f5100",
48328
- "700": "#27291B",
48329
- "800": "#161600",
48544
+ "500": "#C7CC00",
48545
+ "600": "#959900",
48546
+ "700": "#686B00",
48547
+ "800": "#3C4601",
48548
+ "900": "#333300",
48330
48549
  base: "#fbff46"
48331
48550
  },
48332
48551
  neutral: {
@@ -48375,17 +48594,17 @@ const palette = {
48375
48594
  base: "#2f2c3a"
48376
48595
  },
48377
48596
  info: {
48378
- "50": "#dae6fc",
48379
- "100": "#b5cdf9",
48380
- "200": "#91b3f6",
48381
- "300": "#6c9af3",
48382
- "400": "#135be6",
48383
- "500": "#0e44ad",
48384
- "600": "#092e73",
48385
- "650": "#09255B",
48386
- "700": "#061d48",
48387
- "800": "#05173a",
48388
- "900": "#041330",
48597
+ "50": "#E7EFFD",
48598
+ "100": "#D0DFFB",
48599
+ "200": "#A1BEF7",
48600
+ "300": "#6D9BF3",
48601
+ "400": "#437EEF",
48602
+ "500": "#1D64EC",
48603
+ "600": "#104EC6",
48604
+ "650": "#0D3E9B",
48605
+ "700": "#0D3E9B",
48606
+ "800": "#092B6C",
48607
+ "900": "#061C47",
48389
48608
  base: "#4781f0"
48390
48609
  },
48391
48610
  success: {
@@ -48394,25 +48613,25 @@ const palette = {
48394
48613
  "200": "#99FFA1",
48395
48614
  "300": "#66FF73",
48396
48615
  "400": "#33FF44",
48397
- "500": "#00FF15",
48398
- "600": "#00CC11",
48399
- "700": "#00990D",
48400
- "800": "#006609",
48616
+ "500": "#00E513",
48617
+ "600": "#00BD10",
48618
+ "700": "#008A0B",
48619
+ "800": "#006108",
48401
48620
  "850": "#004206",
48402
48621
  "900": "#004206",
48403
48622
  base: "#62de85"
48404
48623
  },
48405
48624
  warning: {
48406
- "50": "#ffedd8",
48407
- "100": "#ffdbb1",
48408
- "200": "#ffca8b",
48409
- "300": "#ffb864",
48410
- "400": "#ff9416",
48411
- "500": "#ed8000",
48412
- "600": "#c66b00",
48413
- "700": "#9e5600",
48414
- "800": "#4f2b00",
48415
- "900": "#271500",
48625
+ "50": "#FFE2D1",
48626
+ "100": "#FFCBAD",
48627
+ "200": "#FFB88F",
48628
+ "300": "#FF9457",
48629
+ "400": "#FF7729",
48630
+ "500": "#F55A00",
48631
+ "600": "#D64F00",
48632
+ "700": "#A33C00",
48633
+ "800": "#7A2D00",
48634
+ "900": "#471A00",
48416
48635
  base: "#ffa63d"
48417
48636
  },
48418
48637
  danger: {
@@ -48438,17 +48657,17 @@ const palette = {
48438
48657
  transparent: "rgba(0,0,0,0)"
48439
48658
  },
48440
48659
  teal: {
48441
- "50": "#E5FFFB",
48442
- "100": "#CCFFF6",
48443
- "200": "#99FFEE",
48444
- "300": "#66FFE5",
48445
- "400": "#33FFDD",
48446
- "500": "#00FFD4",
48447
- "600": "#00CCAA",
48448
- "700": "#009980",
48449
- "800": "#006655",
48660
+ "50": "#E6FEFA",
48661
+ "100": "#CFFCF4",
48662
+ "200": "#A3FAEC",
48663
+ "300": "#6DF8E1",
48664
+ "400": "#0CEDC8",
48665
+ "500": "#0BD0AF",
48666
+ "600": "#089B83",
48667
+ "700": "#067462",
48668
+ "800": "#045245",
48450
48669
  "850": "#004237",
48451
- "900": "#00332A"
48670
+ "900": "#03352D"
48452
48671
  },
48453
48672
  violet: {
48454
48673
  "50": "#F6E5FF",
@@ -48475,6 +48694,30 @@ const palette = {
48475
48694
  "800": "#66004D",
48476
48695
  "850": "#4D0039",
48477
48696
  "900": "#330026"
48697
+ },
48698
+ sunrise: {
48699
+ "50": "#FFF3CC",
48700
+ "100": "#FFE799",
48701
+ "200": "#FFDB66",
48702
+ "300": "#FFCF33",
48703
+ "400": "#FFC300",
48704
+ "500": "#E0AC00",
48705
+ "600": "#B28800",
48706
+ "700": "#8A6900",
48707
+ "800": "#574200",
48708
+ "900": "#332700"
48709
+ },
48710
+ babyblue: {
48711
+ "50": "#DBFAFF",
48712
+ "100": "#BDF6FF",
48713
+ "200": "#8AEFFF",
48714
+ "300": "#33E4FF",
48715
+ "400": "#00CBEB",
48716
+ "500": "#00B5D1",
48717
+ "600": "#008599",
48718
+ "700": "#006170",
48719
+ "800": "#00424D",
48720
+ "900": "#002C33"
48478
48721
  }
48479
48722
  };
48480
48723
  const sizes = {