Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FFavicon & BrandingAction1 icon(s) detectedFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CAlt Text QualityAction6 of 8 images have issuesREVIEW
| Issue | Count |
|---|---|
| missing | 6 image(s) |
Images without alt text are invisible to screen readers.
Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.
Learn more ▾ ▴
WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.
Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report
B404 Error PageHTTP 404, custom pageREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 18 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
1 contrast failures on background images/gradients
These failures are invisible to CSS-based accessibility tools like Lighthouse. The text may be fine on a solid background, but fails when rendered over an image or gradient.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 Safe, stable, | 1.31:1 | 3.0:1 | #000000 | #231B44 | Fail |
| h1 reproducible project… | 1.58:1 | 3.0:1 | #000000 | #3F2450 | Fail |
| h3 Workspaces | 1.08:1 | 3.0:1 | #000000 | #090B1F | Fail |
| h3 Stability | 1.08:1 | 3.0:1 | #000000 | #090B1F | Fail |
| h3 Documentation | 1.08:1 | 3.0:1 | #000000 | #090B1F | Fail |
| h3 Plugins | 1.08:1 | 3.0:1 | #000000 | #090B1F | Fail |
| h3 Innovation | 1.08:1 | 3.0:1 | #000000 | #090B1F | Fail |
| h3 Openness | 1.08:1 | 3.0:1 | #000000 | #090B1F | Fail |
| title Home page | Yarn | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Skip to main content | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| b Yarn | 1.42:1 | 3.0:1 | #000000 | #362038 | Fail |
| a Get Started | 1.39:1 | 4.5:1 | #000000 | #341F35 | Fail |
| a Features | 1.36:1 | 4.5:1 | #000000 | #321D33 | Fail |
| a CLI | 1.32:1 | 4.5:1 | #000000 | #2F1B30 | Fail |
| a Configuration | 1.30:1 | 4.5:1 | #000000 | #2D1A2D | Fail |
| a Advanced | 1.28:1 | 4.5:1 | #000000 | #2B192A | Fail |
| a Blog | 1.25:1 | 4.5:1 | #000000 | #291728 | Fail |
| a API | 1.23:1 | 4.5:1 | #000000 | #271625 | Fail |
| a master (4.14.1-dev) | 1.20:1 | 4.5:1 | #000000 | #241423 | Fail |
| a master (4.14.1-dev) | 1.18:1 | 4.5:1 | #000000 | #221320 | Fail |
Methodology: The top 20 text elements by font size were checked. Background color was sampled from the desktop screenshot using a 5-point pattern. WCAG 2.1 AA requires 4.5:1 for normal text and 3:1 for large text.
A+Landmark Structure4 landmarksPASS
AHeading Hierarchy7 headings, 1 skip(s)PASS
- H1 Safe, stable,reproducible projectsstable... canary...
- H3 Workspaces skipped
- H3 Stability
- H3 Documentation
- H3 Plugins
- H3 Innovation
- H3 Openness
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
AForm Accessibility1 of 1 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| input | input | (Search packages (e.g. babel, webpack, react, ...)) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input>
Placeholder-only labels disappear when the user starts typing — they must remember what the field was for.
Learn more ▾ ▴
Placeholders are NOT labels. They vanish on input, fail color contrast checks (most are gray), and don't satisfy WCAG SC 3.3.2. Always use a real <label> alongside (or aria-labelledby).
Source: WCAG 2.1 SC 3.3.2 / Nielsen Norman
ALink & Button Quality16 links, 2 buttons — all OKPASS
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://v3.yarnpkg.com | 3.8.7 | new tab | Add '(opens in new tab)' to text |
| https://classic.yarnpkg.com/en/docs | 1.22.22 | new tab | Add '(opens in new tab)' to text |
| https://discord.gg/yarnpkg | Discord | new tab | Add '(opens in new tab)' to text |
| https://github.com/yarnpkg/berry | GitHub | new tab | Add '(opens in new tab)' to text |
Add '(opens in new tab)' to link text or aria-label.
https://v3.yarnpkg.com; https://classic.yarnpkg.com/en/docs; https://discord.gg/yarnpkg; https://github.com/yarnpkg/berry
Links with target="_blank" without rel="noopener" leak the originating page's window context — security and UX issue.
Learn more ▾ ▴
Without rel="noopener", the new tab can navigate the original tab via window.opener (tab-nabbing attack). Modern browsers default to noopener for target=_blank but only since recent versions. Always set rel="noopener noreferrer" explicitly.
Source: MDN target / OWASP
ALighthouse Accessibility AuditsScore 93/100 — 2 failing, 21 passedPASS
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Workspaces div.row > div.col > div.text--center > h3 |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.row > div.col > div.text--center > img.icon_cRwW div.row > div.col > div.text--center > img.icon_cRwW |
div.row > div.col > div.text--center > img.icon_cRwW div.row > div.col > div.text--center > img.icon_cRwW |
div.row > div.col > div.text--center > img.icon_cRwW div.row > div.col > div.text--center > img.icon_cRwW |
div.row > div.col > div.text--center > img.icon_cRwW div.row > div.col > div.text--center > img.icon_cRwW |
div.row > div.col > div.text--center > img.icon_cRwW div.row > div.col > div.text--center > img.icon_cRwW |
div.row > div.col > div.text--center > img.icon_cRwW div.row > div.col > div.text--center > img.icon_cRwW |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.