Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #719 from MeasureAuthoringTool/MAT-7618
Browse files Browse the repository at this point in the history
MAT-7618: Update warning colors
  • Loading branch information
mcmcphillips authored Oct 8, 2024
2 parents b8130f5 + ed7f389 commit 5167db2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/components/editTestCase/qiCore/EditTestCase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,12 @@ interface navigationParams {
}

const styles = {
success: `color #006400; background-color: #90EE90`,
warning: `color #B0350C; background-color: #ECDF27`,
error: `color #C03030; background-color: #FFF829`,
meta: tw`bg-blue-100 text-black`,
default: `color #00688B; background-color: #E0FFFF`,
success: `color #333333; background-color: #90EE90; border: solid 1px #7cb342`,
warning: `color #333333; background-color: #FFF9EB; border: solid 1px #FFC438`,
error: `color #333333; background-color: #FDE7EA; border: solid 1px #D92F2F`,
// meta and default are same colors.
meta: `color #333333; background-color: #e6f5ff; border: solid 1px #0073c8`,
default: `color #333333; background-color: #e6f5ff; border: solid 1px #0073c8`,
};

/*
Expand Down

0 comments on commit 5167db2

Please sign in to comment.