禁用时如何更改 Ant Design Radio 组件的文本颜色

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

我想在禁用 Ant Design 单选按钮时更改文本颜色。我一直在尝试这样的事情...

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

哪个没用。

添加以下内容css.

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

截图