Skip to content

Commit

Permalink
change system color table
Browse files Browse the repository at this point in the history
  • Loading branch information
jongund committed Jun 7, 2024
1 parent 0a729fb commit 39a9f32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/practices/high-contrast/high-contrast-practice.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 39a9f32

Please sign in to comment.