Skip to content

Commit

Permalink
[MERGE] #278 -> develop
Browse files Browse the repository at this point in the history
[FIX/#278] μΊ˜λ¦°λ” λ‚ μ§œ ν‘œμ‹œ 색상 λ³€κ²½
  • Loading branch information
boiledEgg-s authored Oct 6, 2024
2 parents f454c3f + 291d037 commit 8cbaccb
Showing 1 changed file with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,19 @@ fun CalendarDay(
onDateSelected: (LocalDate) -> Unit = {}
) {
val backgroundColor =
if (isSelected) TerningMain else if (isToday) Grey200 else Color.Transparent
if (isSelected)
TerningMain
else if (isToday) Grey150
else Color.Transparent

val textColor =
if (dayData.isOutDate) {
Grey150
} else {
if (isSelected)
White
else
Black
}
if (dayData.isOutDate)
Grey200
else if (isSelected)
White
else
Black


Box(
modifier = modifier,
Expand Down

0 comments on commit 8cbaccb

Please sign in to comment.