Fix warning text contrast for better readability

Change text-warning from bright yellow (#ffc107) to darker amber (#b45309)
for WCAG AA compliant 4.8:1 contrast ratio on white backgrounds.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-21 11:33:17 +00:00
parent 21a95a38f5
commit 6f384f8d09

View File

@@ -863,6 +863,10 @@ h1:focus {
color: var(--truecv-gray-600) !important; color: var(--truecv-gray-600) !important;
} }
.text-warning {
color: #b45309 !important; /* Darker amber for better contrast on white (4.8:1 ratio) */
}
/* Row selection highlight */ /* Row selection highlight */
.table tbody tr.selected { .table tbody tr.selected {
background-color: rgba(37, 99, 235, 0.08) !important; background-color: rgba(37, 99, 235, 0.08) !important;