Skip to content

Commit 1a13f10

Browse files
committed
💄 [Design]: 라이트 모드 색상 조정
1 parent 42d2e10 commit 1a13f10

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

apps/client/src/pages/Home/Bookmark.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function Bookmark() {
8282
<Button
8383
key={data.bookmarkId}
8484
onClick={() => handleClickBookmarkButton(data.url)}
85-
className="h-14 w-52 bg-surface-alt hover:bg-surface-alt-light relative flex items-center justify-between"
85+
className="h-14 w-52 bg-surface-alt text-text-strong hover:bg-surface-alt-light relative flex items-center justify-between"
8686
>
8787
<span className="truncate flex-1">{data.name}</span>
8888
<div

apps/client/src/pages/Home/FieldFilter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function FieldFilter({ onClickFilterButton }: FieldFilterProps) {
2626
className={`${
2727
selected === field
2828
? 'bg-surface-brand-default hover:bg-surface-point-alt'
29-
: 'bg-transparent border border-border-default hover:bg-surface-alt'
29+
: 'bg-transparent border border-border-default hover:bg-surface-alt text-text-strong'
3030
}`}
3131
>
3232
{field}

apps/client/src/pages/Home/LiveCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const LiveCard = ({ liveId, title, userId, profileUrl, thumbnailUrl }: LiveCardP
2626
</div>
2727

2828
{/* LIVE 뱃지 */}
29-
<div className="absolute top-3 left-3 bg-surface-danger text-text-strong text-display-medium12 px-2 py-0.5 rounded-sm flex items-center">
29+
<div className="absolute top-3 left-3 bg-surface-danger text-white text-display-medium12 px-2 py-0.5 rounded-sm flex items-center">
3030
<div className="w-2 h-2 rounded-circle bg-white mr-1 animate-pulse" />
3131
LIVE
3232
</div>

apps/client/src/pages/Profile/EditUserInfo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function EditUserInfo({ userData, toggleEditing }: EditUserInfoProps) {
7070
};
7171

7272
return (
73-
<div className="flex flex-col justify-center items-center w-full h-full gap-10">
73+
<div className="flex flex-col justify-center items-center w-full gap-10">
7474
<Avatar className="w-64 h-64">
7575
<AvatarImage src={userData?.profileImage} />
7676
<AvatarFallback>MY</AvatarFallback>

apps/client/src/pages/Profile/UserInfo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function UserInfo({ userData, isLoading, error, toggleEditing }: UserInfoProps)
4848
<span className="font-bold text-text-strong text-4xl">
4949
{userData?.camperId ? userData.camperId : '???'}
5050
</span>
51-
<div className="flex justify-center items-center bg-surface-brand-default text-text-strong text-display-bold24 h-full w-24 rounded">
51+
<div className="flex justify-center items-center bg-surface-brand-default text-white text-display-bold24 h-full w-24 rounded">
5252
{userData?.field ? userData.field : '???'}
5353
</div>
5454
<button onClick={toggleEditing}>

0 commit comments

Comments
 (0)