이렇게 체크리스트 박스 체크 시 색깔을 커스텀 할 수 있어요!
페이지 별로 추가
<head>
  <style>
    div[aria-checked=true] {
      background-color: #724a26 !important;
    }
  </style>
</head>
HTML
복사
모든 페이지에 적용
<style>
  div[aria-checked=true] {
    background-color: #724a26 !important;
  }
</style>
HTML
복사

