I need to display checkboxes that look like this when unchecked.
https://i.sstatic.net/Z0qHn.png
When the user checks the box, it should change to this:
https://i.sstatic.net/MrVg1.png
I have successfully implemented the second part using the following code:
<Checkbox
sx={{
color: "#DFE0EB",
// backgroundColor: "#DFE0EB",
"&.Mui-checked": {
color: "#1DFB9D"
}
}}
/>
However, I am unsure how to fill the checkbox with the color #DFE0EB when it is not checked.