Skip to content

Commit

Permalink
fix: 색상코드에 '#' 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjy authored Jul 10, 2024
1 parent 2c25f34 commit 1b91677
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/main/java/com/pyro/yolog/domain/trip/entity/ColorCover.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@
@Getter
@RequiredArgsConstructor
public enum ColorCover {
PALE_YELLOW("FFFFB5"),
AQUA_BLUE("D2F5F5"),
PASTEL_BLUE("C6DCE9"),
GRAY_GREEN("9DAAA2"),
PALE_MINT("C6EFDC"),
PALE_PEACH("FED5CF"),
BABY_PINK("FFD1DB"),
BEIGE_BROWN("BBA498"),
IVORY("F2E3C7"),
PALE_OLIVE_GREEN("C4D4B1"),
PALE_GREEN("B2BDA8"),
LIGHT_BROWN("A49D92"),
PALE_AQUA("C6DBDA"),
PALE_CORAL("F1B598"),
LAVENDER("D3C7E6"),
PALE_LILAC("ECD5E3")
PALE_YELLOW("#FFFFB5"),
AQUA_BLUE("#D2F5F5"),
PASTEL_BLUE("#C6DCE9"),
GRAY_GREEN("#9DAAA2"),
PALE_MINT("#C6EFDC"),
PALE_PEACH("#FED5CF"),
BABY_PINK("#FFD1DB"),
BEIGE_BROWN("#BBA498"),
IVORY("#F2E3C7"),
PALE_OLIVE_GREEN("#C4D4B1"),
PALE_GREEN("#B2BDA8"),
LIGHT_BROWN("#A49D92"),
PALE_AQUA("#C6DBDA"),
PALE_CORAL("#F1B598"),
LAVENDER("#D3C7E6"),
PALE_LILAC("#ECD5E3")
;

private final String code;
Expand Down

0 comments on commit 1b91677

Please sign in to comment.