mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-26 10:06:13 +00:00
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
// TODO(Gabe): integrate this w/ the theme
|
|
export const REDESIGN_COLORS = {
|
|
GREY: '#e5e5e5',
|
|
BLUE: '#1890FF',
|
|
};
|
|
|
|
export const ANTD_GRAY = {
|
|
1: '#FFFFFF',
|
|
2: '#FAFAFA',
|
|
3: '#F5F5F5',
|
|
4: '#F0F0F0',
|
|
4.5: '#E9E9E9',
|
|
5: '#D9D9D9',
|
|
6: '#BFBFBF',
|
|
7: '#8C8C8C',
|
|
8: '#595959',
|
|
9: '#434343',
|
|
};
|
|
|
|
export const EMPTY_MESSAGES = {
|
|
documentation: {
|
|
title: 'No documentation yet',
|
|
description: 'Share your knowledge by adding documentation and links to helpful resources.',
|
|
},
|
|
tags: {
|
|
title: 'No tags added yet',
|
|
description: 'Tag entities to help make them more discoverable and call out their most important attributes.',
|
|
},
|
|
terms: {
|
|
title: 'No terms added yet',
|
|
description: 'Apply glossary terms to entities to classify their data.',
|
|
},
|
|
owners: {
|
|
title: 'No owners added yet',
|
|
description: 'Adding owners helps you keep track of who is responsible for this data.',
|
|
},
|
|
properties: {
|
|
title: 'No properties',
|
|
description: 'Properties will appear here if they exist in your data source.',
|
|
},
|
|
queries: {
|
|
title: 'No queries',
|
|
description: 'Recent queries made to this dataset will appear here.',
|
|
},
|
|
domain: {
|
|
title: 'No domain set',
|
|
description: 'Group related entities based on your organizational structure using by adding them to a Domain.',
|
|
},
|
|
};
|