optimized playing process bar

This commit is contained in:
2026-08-30 08:32:31 +08:00
parent 856aa38026
commit 997bd9eed8
3 changed files with 5 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ struct FullscreenPlayerView: View {
}
.padding(18)
.frame(maxWidth: .infinity, alignment: .leading)
.background(Theme.overlay)
.background(Theme.overlayFaint)
}
VStack {
Spacer()

View File

@@ -13,6 +13,7 @@ enum Theme {
static let progressTrackDark = Color(hex: 0x373E46)
static let lightBorder = Color(hex: 0xDAE2E8)
static let overlay = Color(red: 9.0 / 255.0, green: 12.0 / 255.0, blue: 16.0 / 255.0, opacity: 0.7)
static let overlayFaint = Color(red: 9.0 / 255.0, green: 12.0 / 255.0, blue: 16.0 / 255.0, opacity: 0.2)
static let textDark = Color(hex: 0x12181F)
static let textMuted = Color(hex: 0x97A2AE)
static let textSubtle = Color(hex: 0x58626C)