Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public record IconOption(int id, String name) {}
new ColorOption("3DC2FF", "lightblue"),
new ColorOption("28D0ED", "cyan"),
new ColorOption("1ED45A", "green"),
new ColorOption("6BE016", "lime")
new ColorOption("6BE016", "lime"),
new ColorOption("FFEB38", "yellow")
Comment on lines +24 to +25

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

유지보수성 향상을 위해 관련된 항목들은 논리적인 순서로 유지하는 것이 좋습니다. COLORS 목록은 무지개처럼 색상(hue) 순서로 정렬된 것으로 보입니다. 새로 추가된 'yellow' 색상이 목록의 끝에 추가되어 이 패턴을 깨고 있습니다. 일관된 순서를 유지하기 위해 'orange' 다음에 위치시키는 것을 고려해 주세요.

);

public static final List<IconOption> ICONS = List.of(
Expand Down

This file was deleted.