fix(ui/ingest): change color for info (#14331)

This commit is contained in:
Aseem Bansal 2025-08-06 15:14:34 +05:30 committed by GitHub
parent 867fc01fc9
commit 6cedfb93c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -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;

View File

@ -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) => (
<span data-testid={`icon-${icon}`} data-icon={icon} {...props}>