Skip to content

Commit

Permalink
Feature/#67 gray50컬러 추가 (#68)
Browse files Browse the repository at this point in the history
* desgin: gray50 추가
#67

* desgin: gray50 적용
#67
  • Loading branch information
pipisebastian authored Feb 18, 2024
1 parent a2838fd commit 2146f94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/team/[teamId]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Flex } from '@chakra-ui/react';

const Page = () => {
return <Flex w="100%" bg="#F7F7F7" />;
return <Flex w="100%" bg="gray.50" />;
};

export default Page;
2 changes: 1 addition & 1 deletion src/app/team/[teamId]/study/[studyId]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Flex } from '@chakra-ui/react';

const Page = () => {
return <Flex w="100%" bg="#F7F7F7" />;
return <Flex w="100%" bg="gray.50" />;
};

export default Page;
1 change: 1 addition & 0 deletions src/theme/foundations/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const colors = {
orange: color.orange,
orange_dark: color.orange_dark,
gray: {
'50': '#F7F7F7',
'100': '#DADADA',
'200': '#9A9A9A',
},
Expand Down

0 comments on commit 2146f94

Please sign in to comment.