Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update colors for engagement phases #1809

Merged
merged 1 commit into from
Jul 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions met-web/src/models/engagementPhases.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export const ENGAGEMENT_PHASES = {
phaseId: EngagementPhases.EarlyEngagement,
title: 'Early Engagement',
backgroundColor: '#54858D',
accordionBackground: '#cce5e9',
learnMoreBackgroundColor: '#cce5e9',
accordionBackground: '#EFFBFD',
learnMoreBackgroundColor: '#EFFBFD',
learnMoreText: (
<Grid item xs={12}>
<MetParagraph>
Expand All @@ -59,8 +59,8 @@ export const ENGAGEMENT_PHASES = {
phaseId: EngagementPhases.ReadinessDecision,
title: 'Readiness Decision',
backgroundColor: '#DA6D65',
learnMoreBackgroundColor: '#ead0ce',
accordionBackground: '#ead0ce',
learnMoreBackgroundColor: '#F2DEDE',
accordionBackground: '#F2DEDE',
learnMoreText: (
<Grid item xs={12}>
<MetParagraph>
Expand All @@ -74,8 +74,8 @@ export const ENGAGEMENT_PHASES = {
phaseId: EngagementPhases.ProcessPlanning,
title: 'Process Planning',
backgroundColor: '#043673',
accordionBackground: '#bed1e7',
learnMoreBackgroundColor: '#bed1e7',
accordionBackground: '#ECF3FC',
learnMoreBackgroundColor: '#ECF3FC',
learnMoreText: (
<Grid item xs={12}>
<MetParagraph>
Expand All @@ -92,8 +92,8 @@ export const ENGAGEMENT_PHASES = {
phaseId: EngagementPhases.ApplicationDevelopmentReview,
title: 'Application Development & Review',
backgroundColor: '#4D95D0',
accordionBackground: '#bbd3e7',
learnMoreBackgroundColor: '#bbd3e7',
accordionBackground: '#DDF0FE',
learnMoreBackgroundColor: '#DDF0FE',
learnMoreText: (
<>
<Grid item xs={12}>
Expand Down Expand Up @@ -122,8 +122,8 @@ export const ENGAGEMENT_PHASES = {
phaseId: EngagementPhases.EffectsAssessmentRecommendation,
title: 'Effects Assessment & Recommendation',
backgroundColor: '#E7A913',
accordionBackground: '#f2e1b6',
learnMoreBackgroundColor: '#f2e1b6',
accordionBackground: '#FFEFCB',
learnMoreBackgroundColor: '#FFEFCB',
learnMoreText: (
<>
<Grid item xs={12}>
Expand All @@ -149,8 +149,8 @@ export const ENGAGEMENT_PHASES = {
phaseId: EngagementPhases.Decision,
title: 'Decision',
backgroundColor: '#6A54A3',
accordionBackground: '#dbd7e5',
learnMoreBackgroundColor: '#dbd7e5',
accordionBackground: '#F3EFFF',
learnMoreBackgroundColor: '#F3EFFF',
learnMoreText: (
<Grid item xs={12}>
<MetParagraph sx={{ fontStyle: 'italic' }}>
Expand All @@ -164,8 +164,8 @@ export const ENGAGEMENT_PHASES = {
phaseId: EngagementPhases.PostCertificate,
title: 'Post-Certificate',
backgroundColor: '#A6BB2E',
accordionBackground: '#e9eecc',
learnMoreBackgroundColor: '#e9eecc',
accordionBackground: '#F4F7E2',
learnMoreBackgroundColor: '#F4F7E2',
learnMoreText: (
<>
<Grid item xs={12}>
Expand Down
Loading