const table = document.querySelector("table"); // 테이블 선택 const rows = table.querySelectorAll("tr"); // 모든 행 선택 const lightGreenColor = "#A8C6A3"; // 색상 값을 const 변수로 선언 rows.forEach((row) => { const cells = row.querySelectorAll("td"); // 해당 행의 모든 <td> 가져오기 cells.forEach((col, index) => { if (firstPartClass === "ES565" || firstPartClass === "ER565") { if (index === 9) col.style.backgroundColor = lightGreenColor } else if (firstPartClass === "EU565" || firstPartClass === "EV565") { if (index === 10) col.style.backgroundColor = lightGreenColor } else if (firstPartClass === "ET565" || firstPartClass === "ET564") { if (index === 12) col.style.backgroundColor = lightGreenColor } }); }); |
![]() |
![]() |
![]() |
![]() |
색상HEX 코드설명
🍏 #28A745 | col.style.backgroundColor = "#28A745"; | 초록 + 연두빛 |
🍃 #40C463 | col.style.backgroundColor = "#40C463"; | 좀 더 밝고 싱그러운 초록 |
🌿 #6CD26F | col.style.backgroundColor = "#6CD26F"; | 연한 연두색 |
🌱 #A8E6A3 | col.style.backgroundColor = "#A8E6A3"; | 부드러운 연두색 (밝은 느낌) |
'Web(HTML)' 카테고리의 다른 글
index.html(2025.02.26) (0) | 2025.02.26 |
---|---|
naver_attach_info + apt_real_info data (0) | 2025.02.21 |
Data NotFound,Comment,Element 추가 (0) | 2025.02.17 |
Start Redis and WebSocket Server (server.js) First (0) | 2025.02.15 |
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif; (0) | 2025.02.14 |