mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-26 10:06:13 +00:00
fix(ui/ingest): change color for info (#14331)
This commit is contained in:
parent
867fc01fc9
commit
6cedfb93c7
@ -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;
|
||||
|
@ -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}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user