diff --git a/content/practices/high-contrast/high-contrast-practice.js b/content/practices/high-contrast/high-contrast-practice.js index 7c2bc8936e..ef5b5e3226 100644 --- a/content/practices/high-contrast/high-contrast-practice.js +++ b/content/practices/high-contrast/high-contrast-practice.js @@ -808,9 +808,9 @@ window.addEventListener('load', () => { systemColorValues.forEach((v) => { if (v.value) { const tr = document.createElement('tr'); - const tdv = document.createElement('td'); - tdv.textContent = v.value; - tr.appendChild(tdv); + const thv = document.createElement('th'); + thv.textContent = v.value; + tr.appendChild(thv); const tds = document.createElement('td'); const div = document.createElement('div'); div.role = 'img';