carbon-react 104.11.0 → 104.12.0

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.
@@ -65,24 +65,25 @@ const StyledNavigationBar = _styledComponents.default.nav`
65
65
  z-index: ${theme.zIndex.nav};
66
66
 
67
67
  ${navigationType === "light" && (0, _styledComponents.css)`
68
- background-color: ${theme.navigationBar.light.background};
69
- border-bottom: 1px solid ${theme.navigationBar.light.borderBottom};
68
+ background-color: var(--colorsComponentsMenuSpringStandard500);
69
+ border-bottom: var(--borderWidth100) solid
70
+ var(--colorsComponentsMenuSpringChildAlt500);
70
71
  `}
71
72
 
72
73
  ${navigationType === "dark" && (0, _styledComponents.css)`
73
- background-color: ${theme.navigationBar.dark.background};
74
- border-bottom: 1px solid ${theme.navigationBar.dark.borderBottom};
75
- color: ${theme.colors.white};
74
+ background-color: var(--colorsComponentsMenuAutumnStandard500);
75
+ color: var(--colorsComponentsMenuYang100);
76
76
  `}
77
77
 
78
78
  ${navigationType === "black" && (0, _styledComponents.css)`
79
- background-color: ${theme.navigationBar.black.background};
80
- color: ${theme.colors.white};
79
+ background-color: var(--colorsComponentsMenuWinterStandard500);
80
+ color: var(--colorsComponentsMenuYang100);
81
81
  `}
82
82
 
83
83
  ${navigationType === "white" && (0, _styledComponents.css)`
84
- background-color: ${theme.colors.white};
85
- border-bottom: 1px solid ${theme.navigationBar.white.borderBottom};
84
+ background-color: var(--colorsComponentsMenuSummerStandard500);
85
+ border-bottom: var(--borderWidth100) solid
86
+ var(--colorsComponentsMenuSummerChildAlt500);
86
87
  `}
87
88
  `}
88
89
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-react",
3
- "version": "104.11.0",
3
+ "version": "104.12.0",
4
4
  "description": "A library of reusable React components for easily building user interfaces.",
5
5
  "engineStrict": true,
6
6
  "engines": {