From fec172671fbf443314f98455efcdb192429f2457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=9D=80=EC=9A=B0?= <136785138+Jung-eunwoo@users.noreply.github.com> Date: Mon, 29 Apr 2024 02:12:29 +0900 Subject: [PATCH] Update use-tree-create-controller.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 기존 어두운 배경이었던 BG_GROUP_04를 다른 색상 컬러로 변경 --- src/composables/use-tree-create-controller.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/composables/use-tree-create-controller.ts b/src/composables/use-tree-create-controller.ts index f781f5f..85a03e8 100644 --- a/src/composables/use-tree-create-controller.ts +++ b/src/composables/use-tree-create-controller.ts @@ -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": {