For example I have the next alert creation way:
alert(message, title) {
positiveButton(R.string.alert_dialog_btn_ok) {
}
}.show()
I want to change the color of positive button to green, and in future set red negative button.
Can I do this without creating custom DSL views inside the alert?