I am trying to make a radio button using the radio type of the <input>. Instead of label, components are bundled together, and instead of using packages such as MUI, I try to use the <input> tag directly.
The functions I want are:
- A circle exists inside regardless of whether it is checked or not. Instead, it is displayed in gray when it is unchecked and blue when it is checked.
- I can change the color of the radio button. However, when checked, the color of the border of the outer circle does not change (the default behavior is that the color of both the outer circle and the inner circle changes).
I succeeded change the color using the accent-color property. However, the color of both the outer circle and the inner circle changes together. Is there a way to satisfy all of the above functions using <input type="radio"..>?
