refactor: use neutral text color for 'started' reading progress state

This commit is contained in:
Gigi
2025-10-16 09:29:41 +02:00
parent e90f902f0b
commit aff5bff03b
3 changed files with 7 additions and 6 deletions

View File

@@ -31,7 +31,7 @@ const BlogPostCard: React.FC<BlogPostCardProps> = ({ post, href, level, readingP
if (readingProgress && readingProgress >= 0.95) {
progressColor = '#10b981' // Green (completed)
} else if (readingProgress && readingProgress > 0 && readingProgress <= 0.10) {
progressColor = '#f59e0b' // Amber (started)
progressColor = 'var(--color-text)' // Neutral text color (started)
}
return (