'How can I change the text color of an Ant Design Radio component when it is disabled

I want to change the text color when an Ant Design Radio button is disabled. I have been trying things like this...

.ant-radio[disabled]:active {
    color: $g06;
}

Which haven't worked.



Solution 1:[1]

Add the folowing css.

.ant-radio-disabled + span {
    color: #ea6262;
}

Screenshot

Screenshot

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Ved