Skip to content
Open
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
5 changes: 3 additions & 2 deletions src/composables/use-tree-create-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ export const getBgColor = (bgType: BgType) => {
ground: "#41C183",
}
}
// BG_TYPE_04 은 어두운 색상의 배경 CASE이므로, 다른 색으로 변경
case "BG_TYPE_04": {
return {
background: "#2F2E4F",
ground: "#534F72",
background: "#FCFFE0",
ground: "#BACD92",
}
}
case "BG_TYPE_05": {
Expand Down