Skip to content

Commit

Permalink
style :: 지원서 상태 색상 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Dec 30, 2023
1 parent c39d8f6 commit 0621055
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/util/object/enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const departmentEnum = {
export const applicationEnum = {
REQUESTED: "승인요청",
APPROVED: "승인됨",
SEND: "전송",
SEND: "지원 중",
FAILED: "불합격",
PASS: "합격",
REJECTED: "반려",
Expand All @@ -29,12 +29,12 @@ export const applicationEnum = {
};

export const applicationStatusStyle = {
REQUESTED: { color: "#7F7F7F", backgroundColor: "#F7F7F7" },
APPROVED: { color: "#2ECC71", backgroundColor: "#E6F8EE" },
SEND: { color: "#873CE7", backgroundColor: "#F0E7FC" },
REQUESTED: { color: "#F1C40F", backgroundColor: "#FDF7E2" },
APPROVED: { color: "#F1C40F", backgroundColor: "#FDF7E2" },
SEND: { color: "#237BC9", backgroundColor: "#E0EBF6" },
FAILED: { color: "#E74C3C", backgroundColor: "#FCE9E7" },
PASS: { color: "#237BC9", backgroundColor: "#E4EFF8" },
REJECTED: { color: "#F1C40F", backgroundColor: "#FDF8E2" },
FIELD_TRAIN: { color: "#237BC9", backgroundColor: "#E4EFF8" },
ACCEPTANCE: { color: "#237BC9", backgroundColor: "#E4EFF8" },
PASS: { color: "#2ECC71", backgroundColor: "#E5F8EE" },
REJECTED: { color: "#E74C3C", backgroundColor: "#FCE9E7" },
FIELD_TRAIN: { color: "#2ECC71", backgroundColor: "#E5F8EE" },
ACCEPTANCE: { color: "#2ECC71", backgroundColor: "#E5F8EE" },
};

0 comments on commit 0621055

Please sign in to comment.