AAA (Enhanced)
The consent disclosure exceeds WCAG 2.1 enhanced contrast requirements. This is the strongest level of accessibility compliance and provides the best legal defensibility.
eConsent automatically evaluates the accessibility of your consent disclosure at the time of capture. Every certificate includes a WCAG 2.1 accessibility attestation that reports whether the consent language met AAA, AA, or fail-level contrast and readability standards. This provides objective, timestamped evidence that your consent disclosure was legible and accessible to the consumer.
Courts and regulators increasingly scrutinize whether consent disclosures were clear and conspicuous. A TCPA disclosure rendered in light gray text on a white background, or in a 6px font buried below the fold, may not constitute valid prior express written consent.
eConsent’s accessibility checks provide:
eConsent evaluates the contrast ratio between the consent disclosure text and its background color, following WCAG 2.1 Success Criterion 1.4.3 (Contrast - Minimum) and 1.4.6 (Contrast - Enhanced).
| Level | Normal text (below 18pt / 14pt bold) | Large text (18pt+ / 14pt+ bold) |
|---|---|---|
| AAA | 7:1 or higher | 4.5:1 or higher |
| AA | 4.5:1 or higher | 3:1 or higher |
| Fail | Below 4.5:1 | Below 3:1 |
The attestation records the computed font size of the consent disclosure text. Courts have found disclosures in very small font sizes to be insufficient for “clear and conspicuous” requirements.
| Assessment | Criteria |
|---|---|
| Adequate | 12px or larger |
| Warning | Between 9px and 12px |
| Fail | Below 9px |
eConsent checks whether the consent disclosure element was actually visible in the viewport at the time of interaction:
display: none, visibility: hidden, or opacity: 0?Every consent certificate includes an accessibility section in the attestation data. Here is an example of what is captured:
{ "accessibility": { "contrast": { "ratio": 8.59, "level": "AAA", "foreground": "#333333", "background": "#FFFFFF" }, "fontSize": { "computed": "14px", "assessment": "adequate" }, "visibility": { "visible": true, "inViewport": true, "dimensions": { "width": 580, "height": 42 }, "cssDisplay": "block", "cssVisibility": "visible", "cssOpacity": "1" }, "wcagLevel": "AAA" }}AAA (Enhanced)
The consent disclosure exceeds WCAG 2.1 enhanced contrast requirements. This is the strongest level of accessibility compliance and provides the best legal defensibility.
AA (Minimum)
The consent disclosure meets WCAG 2.1 minimum contrast requirements. This is acceptable for most compliance purposes but improving contrast is recommended.
Fail
The consent disclosure does not meet WCAG 2.1 minimum contrast requirements. This may be used to challenge the validity of the consent in litigation. Fix immediately.
On the public certificate page (accessible via the certificate URL), the accessibility attestation is displayed in a human-readable format:
This allows attorneys, auditors, and compliance officers to quickly assess whether the consent disclosure met accessibility standards without needing to interpret raw JSON data.
If your certificates are showing AA or Fail levels, adjust your consent disclosure styling:
/* Poor contrast --- may fail WCAG */.consent-disclosure { color: #999999; /* light gray on white = 2.85:1 ratio */ background: #FFFFFF;}
/* AAA-compliant contrast */.consent-disclosure { color: #333333; /* dark gray on white = 12.63:1 ratio */ background: #FFFFFF;}/* Too small --- may be challenged in court */.consent-disclosure { font-size: 8px;}
/* Adequate and legible */.consent-disclosure { font-size: 14px; line-height: 1.5;}Ensure your consent disclosure is not hidden behind expandable sections, modals that may not open, or scrollable containers that require user action to reveal:
<!-- Avoid: disclosure hidden in collapsed accordion --><details> <summary>Terms</summary> <p class="consent-disclosure">By checking this box, you agree...</p></details>
<!-- Better: disclosure visible inline with the form --><p class="consent-disclosure">By checking this box, you agree...</p><label> <input type="checkbox" name="tcpa_consent" /> I agree to the above terms</label>