Skip to content

Commit 488aa55

Browse files
committed
design: color 수정
1 parent 19f1df1 commit 488aa55

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

src/app/(auth)/signup/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function SignupPage() {
2222
{/* 지원자 회원가입 카드 */}
2323
<Link
2424
href="/signup/applicant"
25-
className="flex flex-1 flex-col items-center rounded-lg border-2 border-transparent bg-primary-orange-50 p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-xl"
25+
className="bg-primary-blue-50 flex flex-1 flex-col items-center rounded-lg border-2 border-transparent p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-xl"
2626
>
2727
<div className="flex h-24 w-24 items-center justify-center rounded-full bg-primary-orange-50">
2828
<FaUser className="h-12 w-12 text-primary-orange-300" />
@@ -41,7 +41,7 @@ export default function SignupPage() {
4141
{/* 사장님 회원가입 카드 */}
4242
<Link
4343
href="/signup/owner"
44-
className="flex flex-1 flex-col items-center rounded-lg border-2 border-transparent bg-primary-orange-50 p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-lg"
44+
className="bg-primary-blue-50 flex flex-1 flex-col items-center rounded-lg border-2 border-transparent p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-lg"
4545
>
4646
<div className="flex h-24 w-24 items-center justify-center rounded-full bg-primary-orange-50">
4747
<MdStorefront className="h-14 w-14 text-primary-orange-300" />

src/app/components/button/dropdown/FilterDropdown.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ const FilterDropdown = ({ options, className = "", onChange, initialValue, readO
8282
}}
8383
disabled={readOnly}
8484
>
85-
<span className={selectedLabel === options[0] ? "text-black-100" : "text-primary-orange-300"}>
85+
<span className={selectedLabel === options[0] ? "text-black-100" : "text-primary-orange-500"}>
8686
{selectedLabel}
8787
</span>
8888
<IoIosArrowDown
8989
className={cn(
9090
"text-orange-400 transition-transform duration-200",
9191
isOpen && "rotate-180",
92-
selectedLabel === options[0] ? "text-grayscale-200" : "text-primary-orange-300"
92+
selectedLabel === options[0] ? "text-grayscale-200" : "text-primary-orange-500"
9393
)}
9494
/>
9595
</button>

src/app/components/button/dropdown/dropdownComponent/DropdownList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const DropdownItem = ({
2121
<li
2222
onClick={handleClick}
2323
className={cn(
24-
"flex w-full cursor-pointer bg-grayscale-50 px-[10px] py-2 text-sm font-normal leading-[18px] text-black-100 hover:bg-primary-orange-50 lg:text-lg lg:leading-[26px]",
24+
"hover:bg-primary-blue-50 flex w-full cursor-pointer bg-grayscale-50 px-[10px] py-2 text-sm font-normal leading-[18px] text-black-100 lg:text-lg lg:leading-[26px]",
2525
itemStyle
2626
)}
2727
>

src/app/components/chip/Chip.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ const Chip: React.FC<ChipProps> = ({
2121
variant,
2222
border,
2323
icon,
24-
textStyle = "text-sm md:text-base",
24+
textStyle = "text-sm md:text-base font-bold",
2525
}: ChipProps) => {
2626
const wrapperStyle = "rounded flex items-center justify-center m-1";
2727
const paddingStyle = icon
2828
? "px-[8px] py-1 md:px-[12px] md:py-1 lg:px-[8px] lg:py-[6px]"
2929
: "px-2 py-1 md:px-2 lg:py-[6px] lg:px-2";
3030
const variantStyle =
31-
variant === "positive" ? "bg-primary-orange-50 text-primary-orange-300" : "bg-line-100 text-grayscale-200";
31+
variant === "positive" ? "bg-primary-blue-60 text-primary-orange-300" : "bg-line-100 text-grayscale-200";
3232
const baseTextStyle =
3333
"text-xs leading-[18px] md:leading-[20px] lg:text-sm lg:leading-[22px] font-medium tracking-tighter whitespace-nowrap";
3434
const borderStyle = border ? "border border-primary-orange-100" : "";

tailwind.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,12 @@ const config: Config = {
3535
200: "#94d597",
3636
300: "#5ebd63", // 사용자 브랜드 색상
3737
400: "#4b9f4d",
38+
500: "#008957",
3839
},
3940
blue: {
41+
50: "#ebf2ff",
42+
60: "#f1fcff",
43+
70: "#effcff",
4044
100: "#535779",
4145
200: "#3E415B",
4246
300: "#2A2C3D",
@@ -54,6 +58,9 @@ const config: Config = {
5458
state: {
5559
error: "#FC4100",
5660
},
61+
header: {
62+
100: "#7eca82",
63+
},
5764
},
5865
fontFamily: {
5966
nexon: ["var(--font-nexon)", "sans-serif"],

0 commit comments

Comments
 (0)