Skip to content

Commit 3281074

Browse files
committed
fix: 텍스트 색상을 다크모드 기준으로 변경합니다
1 parent 5a1f76d commit 3281074

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

templates/post-list.ejs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,32 @@
2727
.header {
2828
font-size: 14px;
2929
font-weight: 600;
30-
fill: rgb(72 72 72);
30+
fill: #8d96a0;
3131
}
3232
.log-title {
3333
font-size: 14px;
3434
font-weight: 400;
35-
fill: rgb(72 72 72);
35+
fill: #8d96a0;
3636
}
3737
.log-description {
3838
font-size: 12px;
39-
fill: rgb(72 72 72);
39+
fill: #8d96a0;
4040
}
4141
.tag-item {
4242
font-size: 12px;
4343
fill: #0ca678;
4444
}
4545
.heart-count {
4646
font-size: 12px;
47-
fill: rgb(72 72 72);
47+
fill: #8d96a0;
4848
}
4949
.log-title:hover {
5050
fill: #0ca678;
5151
text-decoration: underline;
5252
}
5353
.list-style {
5454
font-size: 14px;
55-
fill: #212529;
55+
fill: #8d96a0;
5656
}
5757
</style>
5858
<rect class="background" />

templates/post.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
animation: fadeInAnimation 0.8s ease-in-out forwards;
1616
}
1717
text {
18-
fill: rgb(72 72 72);
18+
fill: #8d96a0;
1919
}
2020
.background {
2121
fill: #00000000;
@@ -69,7 +69,7 @@
6969
>
7070
<path
7171
d="M11.25 0L7.5 2.26044L3.75 0L0 2.82555V6.78133L7.5 12.4324L15 6.78133V2.82555L11.25 0Z"
72-
fill="rgb(72 72 72)"
72+
fill="#8d96a0"
7373
/>
7474
</svg>
7575
<text x="<%= likes > 99 ? 365 : likes > 9 ? 370 : 380 %>" class="likes">

0 commit comments

Comments
 (0)