diff --git a/ui/components/app/connected-status-indicator/connected-status-indicator.js b/ui/components/app/connected-status-indicator/connected-status-indicator.js index 5a45880b0..e005cb840 100644 --- a/ui/components/app/connected-status-indicator/connected-status-indicator.js +++ b/ui/components/app/connected-status-indicator/connected-status-indicator.js @@ -37,7 +37,7 @@ export default function ConnectedStatusIndicator({ onClick }) { } let indicatorType = ColorIndicator.TYPES.OUTLINE; - let indicatorColor = COLORS.INFO_DEFAULT; + let indicatorColor = COLORS.ICON_DEFAULT; if (status === STATUS_CONNECTED) { indicatorColor = COLORS.SUCCESS_DEFAULT; diff --git a/ui/components/app/metamask-template-renderer/metamask-template-renderer.stories.js b/ui/components/app/metamask-template-renderer/metamask-template-renderer.stories.js index 9abcb9707..9e1aec0b0 100644 --- a/ui/components/app/metamask-template-renderer/metamask-template-renderer.stories.js +++ b/ui/components/app/metamask-template-renderer/metamask-template-renderer.stories.js @@ -22,7 +22,7 @@ const SECTIONS = { key: 'A Test String', children: 'A Test String', props: { - color: COLORS.UI3, + color: COLORS.TEXT_MUTED, variant: TYPOGRAPHY.H2, }, }, @@ -31,7 +31,7 @@ const SECTIONS = { key: 'Some more text', children: 'Some more text as a paragraph', props: { - color: COLORS.UI4, + color: COLORS.TEXT_ALTERNATIVE, variant: TYPOGRAPHY.Paragraph, }, }, diff --git a/ui/components/app/network-display/network-display.js b/ui/components/app/network-display/network-display.js index 29e90ff3d..c158250dc 100644 --- a/ui/components/app/network-display/network-display.js +++ b/ui/components/app/network-display/network-display.js @@ -40,7 +40,7 @@ export default function NetworkDisplay({ return ( { resize: RESIZE.BOTH, scrollable: false, boxProps: { - borderColor: COLORS.UI3, + borderColor: COLORS.BORDER_MUTED, borderRadius: SIZES.SM, borderStyle: BORDER_STYLE.SOLID, padding: [2, 4], diff --git a/ui/components/ui/typography/README.mdx b/ui/components/ui/typography/README.mdx index 3677acef5..afdc9eff1 100644 --- a/ui/components/ui/typography/README.mdx +++ b/ui/components/ui/typography/README.mdx @@ -114,13 +114,6 @@ List of deprecated color props that are not theme compatible and should not be u ```js /** !!! DEPRECATED DO NOT USE!!! */ -UI1: 'ui-1', -UI2: 'ui-2', -UI3: 'ui-3', -UI4: 'ui-4', -GREY: 'grey', -NEUTRAL_GREY: 'neutral-grey', -WHITE: 'white', PRIMARY1: 'primary-1', PRIMARY3: 'primary-3', SECONDARY1: 'secondary-1', diff --git a/ui/components/ui/typography/typography.js b/ui/components/ui/typography/typography.js index c597bad6d..8c5792e0e 100644 --- a/ui/components/ui/typography/typography.js +++ b/ui/components/ui/typography/typography.js @@ -32,13 +32,6 @@ export const ValidColors = [ /** * COLORS BELOW HAVE BEEN DEPRECATED */ - COLORS.UI1, - COLORS.UI2, - COLORS.UI3, - COLORS.UI4, - COLORS.GREY, - COLORS.NEUTRAL_GREY, - COLORS.WHITE, COLORS.PRIMARY1, COLORS.PRIMARY3, COLORS.SECONDARY1, diff --git a/ui/helpers/constants/design-system.js b/ui/helpers/constants/design-system.js index e00343df0..b6a094542 100644 --- a/ui/helpers/constants/design-system.js +++ b/ui/helpers/constants/design-system.js @@ -56,13 +56,6 @@ export const COLORS = { /** * !!! DEPRECATED DO NOT USE!!! */ - UI1: 'ui-1', - UI2: 'ui-2', - UI3: 'ui-3', - UI4: 'ui-4', - GREY: 'grey', - NEUTRAL_GREY: 'neutral-grey', - WHITE: 'white', PRIMARY1: 'primary-1', PRIMARY3: 'primary-3', SECONDARY1: 'secondary-1',