From 2146f9423bcb7a8a98a192de83832eef25c34866 Mon Sep 17 00:00:00 2001
From: Jang seo yun <81643702+pipisebastian@users.noreply.github.com>
Date: Sun, 18 Feb 2024 16:23:57 +0900
Subject: [PATCH] =?UTF-8?q?Feature/#67=20gray50=EC=BB=AC=EB=9F=AC=20?=
=?UTF-8?q?=EC=B6=94=EA=B0=80=20(#68)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* desgin: gray50 추가
#67
* desgin: gray50 적용
#67
---
src/app/team/[teamId]/page.tsx | 2 +-
src/app/team/[teamId]/study/[studyId]/page.tsx | 2 +-
src/theme/foundations/colors.ts | 1 +
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/app/team/[teamId]/page.tsx b/src/app/team/[teamId]/page.tsx
index 1a18511d..c0b8fa0c 100644
--- a/src/app/team/[teamId]/page.tsx
+++ b/src/app/team/[teamId]/page.tsx
@@ -1,7 +1,7 @@
import { Flex } from '@chakra-ui/react';
const Page = () => {
- return ;
+ return ;
};
export default Page;
diff --git a/src/app/team/[teamId]/study/[studyId]/page.tsx b/src/app/team/[teamId]/study/[studyId]/page.tsx
index 1a18511d..c0b8fa0c 100644
--- a/src/app/team/[teamId]/study/[studyId]/page.tsx
+++ b/src/app/team/[teamId]/study/[studyId]/page.tsx
@@ -1,7 +1,7 @@
import { Flex } from '@chakra-ui/react';
const Page = () => {
- return ;
+ return ;
};
export default Page;
diff --git a/src/theme/foundations/colors.ts b/src/theme/foundations/colors.ts
index 88ad995f..c7663b74 100644
--- a/src/theme/foundations/colors.ts
+++ b/src/theme/foundations/colors.ts
@@ -7,6 +7,7 @@ const colors = {
orange: color.orange,
orange_dark: color.orange_dark,
gray: {
+ '50': '#F7F7F7',
'100': '#DADADA',
'200': '#9A9A9A',
},