Overlay readability on bright video: brighter times, translucent progress track
Some checks failed
Build TV app / build (push) Failing after 2s

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
be-nj
2026-08-26 01:32:34 +02:00
parent ca401e8ca3
commit e66c8a863b
2 changed files with 5 additions and 5 deletions

View File

@@ -12,8 +12,8 @@ android {
applicationId = "dev.castarr.tv"
minSdk = 26
targetSdk = 35
versionCode = 21
versionName = "0.8.5"
versionCode = 22
versionName = "0.8.6"
}
// Release signing from environment (see ~/.keys/castarr-release.env on the

View File

@@ -235,7 +235,7 @@ private fun Overlay(state: AppState) {
Spacer(Modifier.width(14.dp))
Text(
"${formatClock(now.start)} ${formatClock(now.stop)}",
color = CastarrColors.muted,
color = Color(0xFFD7DBE0),
fontFamily = AppFont,
style = OverlayText,
fontSize = 14.sp,
@@ -248,7 +248,7 @@ private fun Overlay(state: AppState) {
Spacer(Modifier.height(2.dp))
Text(
"Danach: ${next.title} (${formatClock(next.start)})",
color = CastarrColors.faint,
color = CastarrColors.muted,
fontFamily = AppFont,
style = OverlayText,
fontSize = 14.sp,
@@ -270,7 +270,7 @@ private fun Overlay(state: AppState) {
.fillMaxWidth()
.height(3.dp)
.clip(RoundedCornerShape(1.5.dp))
.background(CastarrColors.line)
.background(Color(0x59FFFFFF))
) {
Box(
Modifier