Skip to content

Commit

Permalink
[♻️refactor/#96]: 스크랩 color enum 및 필드 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
JungYoonShin committed Sep 2, 2024
1 parent 51c11e5 commit 449eff0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/main/java/org/terning/terningserver/domain/enums/Color.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
@Getter
public enum Color {

RED(0, "ED4E54"),
ORANGE1(1, "EE7647"),
ORANGE2(2, "F3A649"),
YELLOW(3, "F5E660"),
GREEN1(4, "C4E953"),
GREEN2(5, "84D558"),
BLUE1(6, "45D0CC"),
BLUE2(7, "4AA9F2"),
PURPLE(8, "9B64E2"),
PINK(9, "F260AC");
RED("red", "ED4E54"),
ORANGE("orange", "F3A649"),
LIGHT_GREEN("lightgreen", "C4E953"),
MINT("mint", "45D0CC"),
PURPLE("purple", "9B64E2"),
CORAL("coral", "EE7647"),
YELLOW("yellow", "F5E660"),
GREEN("green", "84D558"),
BLUE("blue", "4AA9F2"),
PINK("pink", "F260AC");

private final int key;
private final String name;
private final String value;

public String getColorValue() {
Expand Down

0 comments on commit 449eff0

Please sign in to comment.