diff --git a/src/app/components/Charts/Network/index.tsx b/src/app/components/Charts/Network/index.tsx index 1b8b50099..74ab6926c 100644 --- a/src/app/components/Charts/Network/index.tsx +++ b/src/app/components/Charts/Network/index.tsx @@ -61,7 +61,7 @@ export function NetworkViz(props: NetworkVizProps) { stroke={node.borderColor} transform={`translate(${node.x}, ${node.y}) scale(1)`} css={ - node.color === "#E2E2E2" + node.color === appColors.COMMON.SELECTED_ITEM_VALUE_COLOR ? `fill: url(#diagonalHatch);` : `fill: ${node.color};` } diff --git a/src/app/components/Charts/common/breadcrumbs/index.tsx b/src/app/components/Charts/common/breadcrumbs/index.tsx index 1d5323e96..94879c60c 100644 --- a/src/app/components/Charts/common/breadcrumbs/index.tsx +++ b/src/app/components/Charts/common/breadcrumbs/index.tsx @@ -3,6 +3,7 @@ import { useRecoilState } from "recoil"; import { useHistory } from "react-router-dom"; import RightIcon from "@material-ui/icons/ChevronRight"; import { breadCrumbItems } from "app/state/recoil/atoms"; +import { appColors } from "app/theme"; export default function BreadCrumbs() { const history = useHistory(); @@ -65,14 +66,15 @@ export default function BreadCrumbs() {