diff --git a/packages/react-core/src/components/DataList/examples/DataListWidthModifiers.tsx b/packages/react-core/src/components/DataList/examples/DataListWidthModifiers.tsx index 190e7feabba..e3102e97fdb 100644 --- a/packages/react-core/src/components/DataList/examples/DataListWidthModifiers.tsx +++ b/packages/react-core/src/components/DataList/examples/DataListWidthModifiers.tsx @@ -45,10 +45,9 @@ export const DataListWidthModifiers: React.FunctionComponent = () => { display: 'block', width: '100%', padding: '.25rem .5rem', - color: '#004e8a', - backgroundColor: '#def3ff', - border: '1px solid rgba(0,0,0,.1)', - borderRadius: '4px' + color: 'var(--pf-v5-global--Color--100)', + backgroundColor: 'var(--pf-v5-global--BackgroundColor--200)', + border: 'var(--pf-v5-global--BorderWidth--sm) var(--pf-v5-global--BorderColor--100) solid' }; return ( diff --git a/packages/react-core/src/components/Divider/examples/DividerUsingLi.tsx b/packages/react-core/src/components/Divider/examples/DividerUsingLi.tsx index b6da6ce09f4..f8e0c4269ea 100644 --- a/packages/react-core/src/components/Divider/examples/DividerUsingLi.tsx +++ b/packages/react-core/src/components/Divider/examples/DividerUsingLi.tsx @@ -4,7 +4,7 @@ import { Divider } from '@patternfly/react-core'; export const DividerUsingLi: React.FunctionComponent = () => ( ); diff --git a/packages/react-table/src/components/Table/examples/TableMisc.tsx b/packages/react-table/src/components/Table/examples/TableMisc.tsx index 1ca6f67c798..fbe764241b1 100644 --- a/packages/react-table/src/components/Table/examples/TableMisc.tsx +++ b/packages/react-table/src/components/Table/examples/TableMisc.tsx @@ -65,7 +65,7 @@ export const TableMisc: React.FunctionComponent = () => { {repositories.map((repo, rowIndex) => { const isOddRow = (rowIndex + 1) % 2; const customStyle = { - backgroundColor: 'var(--pf-v5-global--palette--blue-50)' + backgroundColor: 'var(--pf-v5-global--BackgroundColor--150)' }; // Some arbitrary logic to demonstrate that cell styles can be based on anything const nameColSpan = repo.branches === null && repo.prs === null ? 3 : 1;