Skip to content

Commit

Permalink
Improve current day border on dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
carstenhag committed Feb 18, 2025
1 parent ec9984d commit becdf2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ fun Day(
} ?: fallbackColors

val border = if (day.date.isEqual(LocalDate.now())) {
BorderStroke(1.5.dp, Color.DarkGray)
BorderStroke(1.5.dp, fallbackColors.textColor.copy(alpha = 0.5f))
} else null

val fontStyleType = when {
Expand Down

0 comments on commit becdf2d

Please sign in to comment.