How to change the toggle color (order bump, checklist, product select, etc.)

hi @banshii.admin

I see this CSS exists in your page, and it was added in Custom CSS area:

.order-bump .ob-header input[type="checkbox"] {
  accent-color: rgb(0, 0, 0);
}

You can replace that code with following code:

input[type="checkbox"], input[type="radio"] {
  accent-color: blue !important;
}

this will change all radio input and checkbox input to blue color.

1 Like