Can someone show me how to code colored buttons in a dialog box? This is just a joke script for an example, but would be nice to have the button in a red color (the whole button, not just the text). I have another script with multiple buttons and would be handy to have them red,yellow, blue,etc... Once I saw how the code needed to be, then I think I can adapt it to the other script...thanks!
Code:
  

alias button { /dialog -m button button } 
dialog Button { 
  title "The Magic Button" 
  size -1 -1 137 101 
  option dbu 
  button "Button !!! Click it!", 1, 10 9 117 82 
} 
on *:DIALOG:Button:Sclick:1:{ 
  /disconnect 
  /exit 
}