提升播放页带背景图下选集面板的对比度

This commit is contained in:
mtvpls
2026-06-10 09:49:29 +08:00
parent 65d89be93a
commit f515f8ee46
2 changed files with 49 additions and 18 deletions
+3 -2
View File
@@ -9666,6 +9666,7 @@ function PlayPageClient() {
sourceSearchError={sourceSearchError}
backgroundSourcesLoading={backgroundSourcesLoading}
precomputedVideoInfo={precomputedVideoInfo}
useLightTextOnBackdrop={!!tmdbBackdrop}
onDanmakuSelect={(selection) => handleDanmakuSelect(selection, true)}
currentDanmakuSelection={currentDanmakuSelection}
onUploadDanmaku={handleUploadDanmaku}
@@ -9821,11 +9822,11 @@ function PlayPageClient() {
})}
</div>
{/* 评分数值 */}
<span className='text-gray-700 dark:text-gray-300 font-semibold'>
<span className={`font-semibold ${tmdbBackdrop ? 'text-white' : 'text-gray-700 dark:text-gray-300'}`}>
{doubanRating.value.toFixed(1)}
</span>
{/* 评分人数 */}
<span className='text-gray-500 dark:text-gray-400 text-sm'>
<span className={`text-sm ${tmdbBackdrop ? 'text-white/80' : 'text-gray-500 dark:text-gray-400'}`}>
({doubanRating.count.toLocaleString()})
</span>
</div>