Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FFavicon & BrandingAction2 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
CLandmark StructureAction3 landmarksREVIEW
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
Without a <main> landmark, screen-reader users can't skip past the navigation to the page content — every page starts with re-reading the menu.
Learn more ▾ ▴
The <main> element marks the page's primary content area. Assistive tech offers a 'jump to main' shortcut — but only if <main> exists. Without it, every page navigation forces re-reading the header. Wrap your primary content in a single <main>.
Source: WAI-ARIA / WCAG 2.4.1
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Without a skip-nav link, keyboard users tab through every nav item before reaching content — every page, every visit.
Learn more ▾ ▴
WCAG 2.4.1 (Bypass Blocks) requires a mechanism to skip past repeated content. The standard implementation is a 'Skip to main content' link that's the first focusable element, visually hidden until focused. Three lines of HTML + four of CSS.
Source: WCAG 2.1 SC 2.4.1
CLink & Button QualityAction3 issue(s) across 112 links and 1 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| / | (empty) | empty | Add link text or aria-label |
| https://demo.home-assistant.io | View live demos | new tab | Add '(opens in new tab)' to text |
| https://github.blog/news-insights/octove… | Top open source project by con… | new tab | Add '(opens in new tab)' to text |
| https://demo.home-assistant.io/ | Home Assistant screenshot | new tab | Add '(opens in new tab)' to text |
| /cloud/ | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Cloud | |||
| /cloud/ | Learn more | generic text | Replace with descriptive text |
Before: Learn more Suggested: Cloud | |||
| https://store.openhomefoundation.org/ | Shop our merch store | new tab | Add '(opens in new tab)' to text |
| https://companion.home-assistant.io/ | DOWNLOAD APPS | new tab | Add '(opens in new tab)' to text |
| https://www.theverge.com/2021/9/16/22678… | The Verge logo | new tab | Add '(opens in new tab)' to text |
| https://arstechnica.com/information-tech… | ArsTechnica.com logo | new tab | Add '(opens in new tab)' to text |
| https://tweakers.net/reviews/8704/paulus… | Tweakers.net logo | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/watch?v=x7pSkVar… | Linus Tech Tips logo | new tab | Add '(opens in new tab)' to text |
| https://www.troyhunt.com/iot-unravelled-… | Troy Hunt logo | new tab | Add '(opens in new tab)' to text |
| https://www.tomshardware.com/news/raspbe… | Tom's Hardware logo | new tab | Add '(opens in new tab)' to text |
| https://www.producthunt.com/posts/home-a… | ProductHunt.com logo | new tab | Add '(opens in new tab)' to text |
| https://www.linux.com/news/home-assistan… | Linux.com logo | new tab | Add '(opens in new tab)' to text |
| https://opensource.com/article/17/7/home… | OpenSource.com logo | new tab | Add '(opens in new tab)' to text |
| http://www.linux-magazine.com/Issues/201… | Linux Magazine logo | new tab | Add '(opens in new tab)' to text |
| https://www.heise.de/select/ct/2017/26/1… | Ct logo | new tab | Add '(opens in new tab)' to text |
| https://store.openhomefoundation.org | Merch store | new tab | Add '(opens in new tab)' to text |
| https://youtube.com/@home_assistant | YouTube | new tab | Add '(opens in new tab)' to text |
| https://reddit.com/r/homeassistant | new tab | Add '(opens in new tab)' to text | |
| https://github.com/home-assistant | GitHub | new tab | Add '(opens in new tab)' to text |
| https://fosstodon.org/@homeassistant | Mastodon | new tab | Add '(opens in new tab)' to text |
| https://bsky.app/profile/home-assistant.… | Bluesky | new tab | Add '(opens in new tab)' to text |
| https://x.com/home_assistant | X (formerly Twitter) | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/homeassistantio | new tab | Add '(opens in new tab)' to text | |
| https://www.instagram.com/homeassistant/ | new tab | Add '(opens in new tab)' to text | |
| https://www.linkedin.com/company/home-as… | new tab | Add '(opens in new tab)' to text | |
Links without text are announced as raw URLs by screen readers.
/
Links with no accessible text (empty <a></a>, image-only no alt, icon-only no aria-label) are unidentifiable to screen readers.
Source: WCAG 2.1 SC 2.4.4
Generic link text like 'click here' doesn't describe the destination.
/cloud/ ("Learn more"); /cloud/ ("Learn more")
Generic anchor text ('click here', 'read more', 'learn more') tells screen readers and search engines nothing about the destination.
Learn more ▾ ▴
Out-of-context lists of links read by AT (one navigation pattern) become useless when every link says 'click here'. Use the destination's title or topic as anchor text. Doubles as SEO win — Google passes anchor-text relevance to the destination.
Source: WCAG 2.4.4 / Google Search Central
Add '(opens in new tab)' to link text or aria-label.
https://demo.home-assistant.io; https://github.blog/news-insights/octoverse/octoverse-a-new-developer-joins-g…; https://demo.home-assistant.io/; https://store.openhomefoundation.org/; https://companion.home-assistant.io/; https://www.theverge.com/2021/9/16/22678088/home-assistant-amber-smart-home-h…; https://arstechnica.com/information-technology/2021/03/how-to-achieve-smart-h…; https://tweakers.net/reviews/8704/paulus-schoutsen-home-assistant-concurreert…; https://www.youtube.com/watch?v=x7pSkVarixU; https://www.troyhunt.com/iot-unravelled-part-1-its-a-mess-but-then-theres-hom… (+16 more)
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
B404 Error PageHTTP 404, custom pageREVIEW
BLighthouse Accessibility AuditsScore 89/100 — 4 failing, 17 passedREVIEW
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.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
2026.4.3 div.grid-wrapper > div.grid > div.grid__item > a.release-date |
We are a non-profit and can't be sold or acquired. div.grid__item > a.material-card > div > p.lead |
Home Assistant is a project by the Open Home Foundation. div.grid__item > a.material-card > div > p |
Read our founder's vision for the perfect home automation div.grid > div.grid__item > a.material-card > p.lead |
LEARN MORE div.grid__item > div.join-community > div.links > a |
LEARN MORE div.grid__item > div.join-community > div.links > a |
FORUMS div.grid__item > div.join-community > div.links > a |
CHAT div.grid__item > div.join-community > div.links > a |
NEWSLETTER div.grid__item > div.join-community > div.links > a |
Works with over 1000 brands div.grid__item > div.feature-cards > div.card > div.card-header |
EXPLORE INTEGRATIONS div.feature-cards > div.card > div.card-content > a.button |
Powerful automations div.grid__item > div.feature-cards > div.card > div.card-header |
EXPLORE AUTOMATIONS div.feature-cards > div.card > div.card-content > a.button |
Versatile dashboards div.grid__item > div.feature-cards > div.card > div.card-header |
EXPLORE DASHBOARDS div.feature-cards > div.card > div.card-content > a.button |
Assist, our voice assistant div.grid__item > div.feature-cards > div.card > div.card-header |
EXPLORE ASSIST div.feature-cards > div.card > div.card-content > a.button |
Extend your system with apps div.grid__item > div.feature-cards > div.card > div.card-header |
Explore apps for Home Assistant div.feature-cards > div.card > div.card-content > a.button |
All your smart home data stays local div.grid__item > div.feature-cards > div.card > div.card-header |
Companion Mobile Apps div.grid__item > div.feature-cards > div.card > div.card-header |
DOWNLOAD APPS div.feature-cards > div.card > div.card-content > a.button |
Home Energy Management div.grid__item > div.feature-cards > div.card > div.card-header |
LEARN MORE div.feature-cards > div.card > div.card-content > a.button |
Home Assistant Cast div.grid__item > div.feature-cards > div.card > div.card-header |
LEARN MORE div.feature-cards > div.card > div.card-content > a.button |
NFC Tags div.grid__item > div.feature-cards > div.card > div.card-header |
LEARN MORE div.feature-cards > div.card > div.card-content > a.button |
Open Home Foundation div.footer-nav > div.company > p > a |
Nabu Casa div.footer-nav > div.company > p > a |
GitHub repo div.grid__item > ul > li > a.external-link |
Developers Portal div.grid__item > ul > li > a.external-link |
Design Portal div.grid__item > ul > li > a.external-link |
Data Science Portal div.grid__item > ul > li > a.external-link |
Community Forum div.grid__item > ul > li > a.external-link |
Creator Network div.grid__item > ul > li > a.external-link |
Works With Home Assistant div.grid__item > ul > li > a.external-link |
Our community div.grid__item > ul > li > a |
Reporting issues div.grid__item > ul > li > a |
Integration Alerts div.grid__item > ul > li > a.external-link |
Security Alerts div.grid__item > ul > li > a |
System Status div.grid__item > ul > li > a.external-link |
iOS and Apple devices div.grid__item > ul > li > a.external-link |
Android and Wear OS div.grid__item > ul > li > a.external-link |
...and more! div.grid__item > ul > li > a.external-link |
Merch store div.grid__item > ul > li > a |
Home Assistant Cloud div.grid__item > ul > li > a |
Privacy Notices div.grid__item > ul > li > a |
Contributor License Agreement div.grid__item > ul > li > a |
Terms of Service div.grid__item > ul > li > a |
Code of Conduct div.grid__item > ul > li > a |
Credits div.grid__item > ul > li > a |
License div.grid__item > ul > li > a |
Sign up for our newsletter div.footer-nav > div.socials > p > a.external-link |
Works With Home Assistant div.socials > div.web-notice > p > a |
email our team div.socials > div.web-notice > p > a |
contact support div.socials > div.web-notice > p > a |
Jekyll div.socials > div.web-notice > p > a |
Oscailte theme div.socials > div.web-notice > p > a |
These are opportunities to improve the legibility of your content.
Names and labels
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.grid-wrapper > div.grid > div.grid__item > a.site-title div.grid-wrapper > div.grid > div.grid__item > a.site-title |
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.
Best practices
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Shop our merch store!
Grab some swag while supporting the Open Home Foundation div.frontpage > div.grid > div.grid__item > a.material-card |
A+Heading Hierarchy15 headingsPASS
- H1 Awakenyour home
- H2 Release Notes
- H2 Recent Blog Posts
- H2 Alexa, turn on the lights
- H2 Ok Google, turn off the AC
- H2 Join The Community
- H2 Features
- H2 In the press
- H2 The Home Assistant project is sponsored by
- H3 Join us and contribute!
- H3 System status
- H3 Companion apps
- H3 Support us
- H3 Governance
- H3 Follow us
AAlt Text Quality1 of 18 images have issuesPASS
| Issue | Count |
|---|---|
| missing | 1 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
AForm Accessibility1 of 1 controls have issuesPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #toggle | checkbox | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="checkbox" id="toggle">
Form controls without labels — assistive tech announces 'edit text' with no context; users can't complete forms.
Source: WCAG 2.1 SC 3.3.2
A+Color Contrast (Screenshot)20 text elements analyzed, 0 fail WCAG AAPASS
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 Awaken | 8.89:1 | 3.0:1 | #000000 | #00B3FF | Pass |
| h2 Release Notes | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h2 Recent Blog Posts | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h2 Alexa, turn on the l… | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h2 Ok Google, turn off … | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h2 Join The Community | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h2 Features | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h2 In the press | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h2 The Home Assistant p… | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h3 Join us and contribu… | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h3 System status | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h3 Companion apps | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h3 Support us | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h3 Governance | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| h3 Follow us | 8.58:1 | 3.0:1 | #000000 | #00AFFF | Pass |
| title Home Assistant | 12.89:1 | 4.5:1 | #000000 | #00DEFF | Pass |
| a 2026.4.3 | 12.58:1 | 4.5:1 | #000000 | #00DBFF | Pass |
| a Getting started | 12.37:1 | 4.5:1 | #000000 | #00D9FF | Pass |
| a Documentation | 12.06:1 | 4.5:1 | #000000 | #00D6FF | Pass |
| a Installation | 11.86:1 | 4.5:1 | #000000 | #00D4FF | Pass |
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.