diff --git a/datahub-web-react/src/app/ingestV2/executions/components/reporting/StructuredReport.tsx b/datahub-web-react/src/app/ingestV2/executions/components/reporting/StructuredReport.tsx index e1846713bc..3904a92f83 100644 --- a/datahub-web-react/src/app/ingestV2/executions/components/reporting/StructuredReport.tsx +++ b/datahub-web-react/src/app/ingestV2/executions/components/reporting/StructuredReport.tsx @@ -52,8 +52,8 @@ const ERROR_COLOR = colors.red[0]; const ERROR_TEXT_COLOR = colors.red[1000]; const WARNING_COLOR = colors.yellow[0]; const WARNING_TEXT_COLOR = colors.yellow[1000]; -const INFO_COLOR = colors.gray[1500]; -const INFO_TEXT_COLOR = colors.gray[1700]; +const INFO_COLOR = colors.gray[1000]; +const INFO_TEXT_COLOR = colors.violet[500]; interface Props { report: StructuredReportType; diff --git a/datahub-web-react/src/app/ingestV2/executions/components/reporting/__tests__/StructuredReport.test.tsx b/datahub-web-react/src/app/ingestV2/executions/components/reporting/__tests__/StructuredReport.test.tsx index 535678537e..76e237e2dc 100644 --- a/datahub-web-react/src/app/ingestV2/executions/components/reporting/__tests__/StructuredReport.test.tsx +++ b/datahub-web-react/src/app/ingestV2/executions/components/reporting/__tests__/StructuredReport.test.tsx @@ -50,7 +50,8 @@ vi.mock('@components', () => ({ colors: { red: { 0: '#FBF3EF', 1000: '#C4360B' }, yellow: { 0: '#FFFAEB', 1000: '#C77100' }, - gray: { 1500: '#F9FAFC', 1700: '#5F6685' }, + gray: { 1000: '#F1F3FD', 1500: '#F9FAFC', 1700: '#5F6685' }, + violet: { 500: '#533FD1' }, }, Icon: ({ icon, ...props }: any) => (