currently I have encountered a project that needs to change the background color of the input checkbox to black. I searched for some information on the Internet but I still can’t successfully change the color. Would you like to help me find out what went wrong?
 input[type=checkbox] {
   background-color: #222;
   padding: 3px 6px;
   border: 1px solid red;
   color: #fff;
   user-select: none; /* 防止文字被滑鼠選取反白 */
  }
  input[type=checkbox]:checked:after {
     display: inline-block;
    content:"";
    color: #fff;
    background-color:#222;
}
/* input[type=checkbox]:checked:after {
  content: "X";
  background-color: #FFFFFF;
  font-size: 12px;
  text-align:center;
} */<input type="checkbox"><label for="enter-send" class="enter-send"> Enter </label> 
    