Accessibility
· 24 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction2 landmarksFIX
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
DHeading HierarchyAction31 headings, 2 skip(s)FIX
- H2 ABOUT US
- H2 BUY • RENT TO BUY • HIRE
- H3 Shop by category
- H6 Commercial Fridges skipped
- H6 Commercial Freezers
- H6 Cake Displays
- H6 Gelato Freezers
- H6 Open Displays / Glass Deli
- H6 Impulse Units
- H6 Stainless Steel Service Range
- H6 Pizza / Salad Counters
- H2 CUSTOMER REVIEW
- H3 Proudly supporting Australian businesses for over 25 Years
- H5 two door freezer (elegance black) skipped
- H6 RESTOCKING SOON
- H5 flora pro™ 3-door flower display fridge
- H6 RESTOCKING SOON
- H5 cdsf400 – one door freezer (black)
- H5 aislepro® triple door fridge
- H5 bar fridge
- H5 sd-620q curved top display chest freezer
- H6 RESTOCKING SOON
- H5 16-tub gelato freezer (optimus)
- H6 BUY NEW FRIDGE FREEZERS
- H6 RENT TO BUY
- H6 EVENTS & SHORT TERM HIRE
- H6 QUICK LINKS
- H6 OUR LOCATIONS
- H6 CONTACT US
- H3 Hire Website Enquiry
- H3 Rent to Buy Website Enquiry
Every page should have one H1 that describes the page content.
No H1 means screen-reader users can't identify the page's primary topic, and Google's content-extraction degrades.
Learn more ▾ ▴
The H1 is the document title for assistive tech and a strong signal to search engines about page topic. Pages without one force screen readers to fall back to the <title> attribute or page chrome. Add a single H1 that names the page's primary subject.
Source: WCAG 2.4.6 / Google Search Central
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
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
FAlt Text QualityAction53 of 57 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 53 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
An image inside a link with no alt creates an empty link.
Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.
Learn more ▾ ▴
An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.
Source: WCAG 2.1 SC 2.4.4
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
CForm AccessibilityAction3 of 21 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| #dgwt-wcas-search-input-1 | search | Products search | for/id |
| #input_8_18 | text | for/id | |
| #input_8_8_3 | text | First | for/id |
| #input_8_8_6 | text | Last | for/id |
| #input_8_16 | text | Phone* | for/id |
| #input_8_4 | Email* | for/id | |
| #input_8_17 | select | Location | for/id |
| #input_8_7 | text | Unit Type* | for/id |
| #input_8_6 | textarea | Enquiry Details | for/id |
| #input_4_20 | text | Company | for/id |
| #input_4_8_3 | text | First | for/id |
| #input_4_8_6 | text | Last | for/id |
| #input_4_19 | text | Phone* | for/id |
| #input_4_4 | Email* | for/id | |
| #input_4_18 | select | Location* | for/id |
| #input_4_7 | text | Unit Type* | for/id |
| #input_4_17 | text | Upgrade To Heavy Duty Shelving *(Only applies to Elegance Black range) | for/id |
| #input_4_6 | textarea | Enquiry Details | for/id |
| #gform_submit_button_8 | submit | (none) | none |
| #gform_submit_button_4 | submit | (none) | none |
| #g-recaptcha-response-100000 | textarea | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="submit" id="gform_submit_button_8">; <input type="submit" id="gform_submit_button_4">; <textarea name="g-recaptcha-response" id="g-recaptcha-response-100000">
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
BLink & Button Quality10 issue(s) across 121 links and 4 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://coldsolutions.com.au | (empty) | empty | Add link text or aria-label |
| tel:1300 668 292 | 1300 668 292 | img no alt | Add alt attribute to the image |
| /cart | Cart … | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au | (empty) | empty | Add link text or aria-label |
| tel:1300 668 292 | (empty) | empty | Add link text or aria-label |
| /cart | 0 | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au/product-cat… | Commercial Fridges | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au/product-cat… | Commercial Freezers | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au/product-cat… | Cake Displays | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au/product-cat… | Gelato Freezers | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au/product-cat… | Open Displays / Glass Deli | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au/product-cat… | Impulse Units | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au/product-cat… | Stainless Steel Service Range | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au/product-cat… | Pizza / Salad Counters | img no alt | Add alt attribute to the image |
| https://coldsolutions.com.au/product/fre… | (empty) | empty | Add link text or aria-label |
| https://coldsolutions.com.au/product/unc… | (empty) | empty | Add link text or aria-label |
| https://coldsolutions.com.au/product/fre… | (empty) | empty | Add link text or aria-label |
| https://coldsolutions.com.au/product/fri… | (empty) | empty | Add link text or aria-label |
| https://coldsolutions.com.au/product/fri… | (empty) | empty | Add link text or aria-label |
| https://coldsolutions.com.au/product/fre… | (empty) | empty | Add link text or aria-label |
| https://coldsolutions.com.au/product/gel… | (empty) | empty | Add link text or aria-label |
Links without text are announced as raw URLs by screen readers.
https://coldsolutions.com.au; https://coldsolutions.com.au; tel:1300 668 292; https://coldsolutions.com.au/product/freezers/two-door-display-freezer-elegance/; https://coldsolutions.com.au/product/uncategorised/flora-pro-3-door-flower-di…; https://coldsolutions.com.au/product/freezers/cdsf400/; https://coldsolutions.com.au/product/fridges/aislepro-triple-door-fridge/; https://coldsolutions.com.au/product/fridges/bar-fridge-buy/; https://coldsolutions.com.au/product/freezers/620lt-curved-top-display-chest-…; https://coldsolutions.com.au/product/gelato-freezers/optimus-gelato-or-displa…
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
BIframe Accessibility2/5 iframe(s) missing title; 0 placeholder(s)REVIEW
C404 Error PageActionCould not testREVIEW
404 page quality check not available.
CFavicon & BrandingAction3 icon(s) detectedREVIEW
BLighthouse Accessibility AuditsScore 82/100 — 6 failing, 22 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 |
|---|
SHOWROOMS IN BNE/SYD/MEL • div.page-container > div.text-uppercase > a > span.primary-color |
100% LOWEST PRICES EVERY TIME! body.home > div.page-container > div.text-uppercase > span.tertiary-color |
ABOUT US div#image-content-row-block_62f248dd70198bab75df630bf6679d84 > div.content > div.semi-wrapper > h2 |
BUY • RENT TO BUY • HIRE div.content > div.semi-wrapper > div.links-about > h2 |
BUY div.semi-wrapper > div.links-about > h2 > a |
RENT TO BUY div.semi-wrapper > div.links-about > h2 > a |
HIRE div.semi-wrapper > div.links-about > h2 > a |
CUSTOMER REVIEW div#image-content-row-block_b029e65715426fd1bca5a3f42e9a85fd > div.content > div.semi-wrapper > h2 |
Proudly supporting Australian businesses for over 25 Years div.page-container > div#brands-block_20287e6f6de082996cbc22009a0ea093 > div.page-container > h3 |
Very impressed. Super simple process from the quote to purchase, delivery & set… div#swiper-wrapper-657c8fe85ddffad1 > div.swiper-slide > div.content > p |
Cold Display Solutions™ supplied and delivered our 3 door fridge in 2015 and it… div#swiper-wrapper-657c8fe85ddffad1 > div.swiper-slide > div.content > p |
SAM div.swiper-container > div#swiper-wrapper-657c8fe85ddffad1 > div.swiper-slide > div.name |
VUMBACA FRUIT MARKET div.swiper-container > div#swiper-wrapper-657c8fe85ddffad1 > div.swiper-slide > div.company |
I purchased several commercial fridges from Steve for my bottle shop, and they’… div#swiper-wrapper-657c8fe85ddffad1 > div.swiper-slide > div.content > p |
BUY $4,012.00 EX GST
$4,413.20 INC GST div > a > div.d-flex > div.product-price |
$4,413.20 INC GST a > div.d-flex > div.product-price > span |
RESTOCKING SOON a > div.product-image > div.overlay-status > h6 |
BUY $4,012.00 EX GST
$4,413.20 INC GST div > a > div.d-flex > div.product-price |
$4,413.20 INC GST a > div.d-flex > div.product-price > span |
RESTOCKING SOON a > div.product-image > div.overlay-status > h6 |
BUY $2,012.00 EX GST
$2,213.20 INC GST div > a > div.d-flex > div.product-price |
$2,213.20 INC GST a > div.d-flex > div.product-price > span |
BUY $3,499.00 EX GST
$3,848.90 INC GST div > a > div.d-flex > div.product-price |
$3,848.90 INC GST a > div.d-flex > div.product-price > span |
BUY $962.00 EX GST
$1,058.20 INC GST div > a > div.d-flex > div.product-price |
$1,058.20 INC GST a > div.d-flex > div.product-price > span |
BUY $1,372.00 EX GST
$1,509.20 INC GST div > a > div.d-flex > div.product-price |
$1,509.20 INC GST a > div.d-flex > div.product-price > span |
RESTOCKING SOON a > div.product-image > div.overlay-status > h6 |
BUY $5,832.00 EX GST
$6,415.20 INC GST div > a > div.d-flex > div.product-price |
$6,415.20 INC GST a > div.d-flex > div.product-price > span |
These are opportunities to improve the legibility of your content.
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.page-container > div.navbar-wrapper > a.phone > img div.page-container > div.navbar-wrapper > a.phone > img |
div.page-container > div.navbar-wrapper > a.cart > img div.page-container > div.navbar-wrapper > a.cart > img |
div.page-container > div#image-content-row-block_62f248dd70198bab75df630bf6679d84 > div.content > img.logo div.page-container > div#image-content-row-block_62f248dd70198bab75df630bf6679d84 > div.content > img.logo |
div.content > div.column > a > img div.content > div.column > a > img |
div.content > div.column > a > img div.content > div.column > a > img |
div.content > div.column > a > img div.content > div.column > a > img |
div.content > div.column > a > img div.content > div.column > a > img |
div.content > div.column > a > img div.content > div.column > a > img |
div.content > div.column > a > img div.content > div.column > a > img |
div.content > div.column > a > img div.content > div.column > a > img |
div.content > div.column > a > img div.content > div.column > a > img |
div.page-container > div#image-content-row-block_b029e65715426fd1bca5a3f42e9a85fd > div.content > img.logo div.page-container > div#image-content-row-block_b029e65715426fd1bca5a3f42e9a85fd > div.content > img.logo |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img div.swiper-container > div#swiper-wrapper-1d0477a5fbaae8107 > div.swiper-slide > img |
div.lists > div.column > div.icon > img div.lists > div.column > div.icon > img |
div.lists > div.column > div.icon > img div.lists > div.column > div.icon > img |
div.lists > div.column > div.icon > img div.lists > div.column > div.icon > img |
div.lists > div.column > div.icon > img div.lists > div.column > div.icon > img |
div.lists > div.column > div.icon > img div.lists > div.column > div.icon > img |
div.lists > div.column > div.icon > img div.lists > div.column > div.icon > img |
div.lists > div.column > div.icon > img div.lists > div.column > div.icon > img |
div.lists > div.column > div.icon > img div.lists > div.column > div.icon > img |
div#testimonial-slider-block_31ff783357bf41cea1b3572df1087945 > div.description > div.semi-wrapper > img div#testimonial-slider-block_31ff783357bf41cea1b3572df1087945 > div.description > div.semi-wrapper > img |
div.page-container > div.column > div.justify-content-center > img div.page-container > div.column > div.justify-content-center > img |
div.page-container > div.column > div.justify-content-center > img div.page-container > div.column > div.justify-content-center > img |
div.page-container > div.column > div.justify-content-center > img div.page-container > div.column > div.justify-content-center > img |
div.column > div.d-flex > div.icon > img div.column > div.d-flex > div.icon > img |
div.column > div.d-flex > div.icon > img div.column > div.d-flex > div.icon > img |
div.column > div.d-flex > div.icon > img div.column > div.d-flex > div.icon > img |
div.column > div.d-flex > div.icon > img div.column > div.d-flex > div.icon > img |
div.column > div.d-flex > div.icon > img div.column > div.d-flex > div.icon > img |
div.bottom-row > div.page-container > div.column > img.logo div.bottom-row > div.page-container > div.column > img.logo |
div.bottom-row > div.page-container > div.column > img.logo div.bottom-row > div.page-container > div.column > img.logo |
div.bottom-row > div.page-container > div.column > img.logo div.bottom-row > div.page-container > div.column > img.logo |
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
section#page_banner > div.page_banner-img > div.video-container > iframe#player section#page_banner > div.page_banner-img > div.video-container > iframe#player |
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.mobile-view > div.page-container > div.navbar-wrapper > a.logo div.mobile-view > div.page-container > div.navbar-wrapper > a.logo |
div.mobile-view > div.page-container > div.navbar-wrapper > a.phone div.mobile-view > div.page-container > div.navbar-wrapper > a.phone |
div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a |
div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a |
div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a |
div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a |
div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a |
div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a |
div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a div.page-container > div#woocommerce-featured-block_54f169f7b612dfc04d416200638e1b3c > div.content > a |
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.
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 |
|---|
Commercial Fridges div.content > div.column > a > h6 |
Two Door Freezer (Elegance Black) div.content > div.column > a > h5 |
These are opportunities to improve keyboard navigation in your application.
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.chrome html.chrome |
These items highlight common accessibility best practices.
A+Heading Text Quality1 heading-text-quality issue(s) detectedPASS
AForm Input Types2 input(s) using type=text where a specific type would helpPASS
A+Form Input Quality21 form control(s) checked, no input-semantic issuesPASS
A+Mobile Keyboard & AutofillNo autofill-eligible form controlsPASS
A+Document LanguageLang attribute set to "en-AU"PASS
A+Tabindex Anti-Patterns0 positive, 1 -1-on-focusablePASS
A+Tap Target AdequacyAll tap targets meet WCAG 2.5.5/2.5.8 sizingPASS
A+Mobile-Readable Font SizesAll 150 visible text node(s) render at >= 12 CSS pixelsPASS
A+PWA DepthNo PWA depth issues detectedPASS
A+Mobile UX Depth1 mobile-depth signal(s) detectedPASS
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 |
|---|---|---|---|---|---|
| h2 ABOUT US | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 • | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 • | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 CUSTOMER REVIEW | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Shop by category | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Proudly supporting A… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Hire Website Enquiry | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Rent to Buy Website … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title Cold Display Solutio… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Buy Fridges / Freeze… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Commercial Freezers | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Commercial Fridges | 19.86:1 | 4.5:1 | #000000 | #F1FAFF | Pass |
| a Supermarket Fridges | 19.86:1 | 4.5:1 | #000000 | #F1FAFF | Pass |
| a Bar Fridges | 19.86:1 | 4.5:1 | #000000 | #F1FAFF | Pass |
| a Glass Door Fridges | 19.86:1 | 4.5:1 | #000000 | #F1FAFF | Pass |
| a Open Displays / Glas… | 19.86:1 | 4.5:1 | #000000 | #F1FAFF | Pass |
| a Impulse Units | 19.86:1 | 4.5:1 | #000000 | #F1FAFF | Pass |
| a Flower Fridges | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Cake Display Fridges | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Gelato Freezers | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | 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.