Skip to content

Commit

Permalink
feat: dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jiohjung98 committed Sep 28, 2024
1 parent 4ead43d commit 0018440
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@ body {
@media (prefers-color-scheme: dark) {
input[type="text"],
textarea {
color: white; /* 다크 모드에서 글씨 색상을 흰색으로 설정 */
color: black; /* 다크 모드에서 글씨 색상을 흰색으로 설정 */
}
}


@media (prefers-color-scheme: dark) {
input[type="text"] {
color: white; /* 글씨 색상을 흰색으로 설정 */
color: black; /* 글씨 색상을 흰색으로 설정 */
}

.comment-section {
color: white; /* 댓글 섹션의 글씨 색상을 흰색으로 설정 */
color: black; /* 댓글 섹션의 글씨 색상을 흰색으로 설정 */
}
}

Expand Down

0 comments on commit 0018440

Please sign in to comment.