@ctlyst.id/internal-ui 1.0.4-canary.6 → 1.0.4-canary.7

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.
@@ -29,7 +29,7 @@ const BreadCrumb = props => {
29
29
  disableHome,
30
30
  spacing = 2
31
31
  } = props;
32
- const [neutral7, dark5] = useToken('colors', ['neutral.700', 'dark.500']);
32
+ const [neutral6, dark5] = useToken('colors', ['neutral.600', 'dark.500']);
33
33
  return /*#__PURE__*/createElement(Box, {
34
34
  "data-test-id": "CT_component_breadcrumb_breadcrumb",
35
35
  className: className,
@@ -42,16 +42,16 @@ const BreadCrumb = props => {
42
42
  alignItems: "center"
43
43
  }, /*#__PURE__*/createElement(Text, {
44
44
  pr: 2,
45
- fontWeight: 500,
46
- textStyle: "heading.3",
45
+ fontWeight: 600,
46
+ textStyle: "heading.4",
47
47
  color: useColorModeValue('neutral.700', 'white')
48
48
  }, title), /*#__PURE__*/createElement(Box, {
49
49
  h: "22px",
50
50
  borderLeft: "1px solid",
51
- borderColor: useColorModeValue('neutral.700', 'white')
51
+ borderColor: useColorModeValue(neutral6, 'white')
52
52
  }), /*#__PURE__*/createElement(Breadcrumb, {
53
53
  separator: /*#__PURE__*/createElement(FiChevronsRight, {
54
- color: useColorModeValue(neutral7, dark5),
54
+ color: useColorModeValue(neutral6, dark5),
55
55
  size: 14
56
56
  }),
57
57
  pl: 2.5,
@@ -101,7 +101,7 @@ const BreadCrumb = props => {
101
101
  cursor: 'default'
102
102
  }
103
103
  }, /*#__PURE__*/createElement(Text, {
104
- color: useColorModeValue('dark.700', 'white'),
104
+ color: useColorModeValue(neutral6, 'white'),
105
105
  fontSize: "text.sm",
106
106
  fontWeight: 400
107
107
  }, title))))), children && /*#__PURE__*/createElement(Box, null, children));