Elements must meet minimum color contrast ratio thresholds
Ensure the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds.
Element has insufficient color contrast of 1.6:1 (foreground #9ca3af, background #f3f4f6). Expected minimum 4.5:1.
<button class="btn-secondary">Learn more</button>
<style>
.btn-secondary {
background: #f3f4f6;
color: #9ca3af;
padding: 10px 20px;
border-radius: 8px;
}
</style><button class="btn-secondary">Learn more</button>
<style>
.btn-secondary {
background: #f3f4f6;
color: #1f2937; /* was #9ca3af */
padding: 10px 20px;
border-radius: 8px;
}
</style>