You can change the color of the boxes...
You will need to edit the arcade.php file..
The first box color is white..
Code:
background: #{$this->arcade->settings['ladder_empty_color']};
You can change it like this...
Code:
background: #000000;
#000000 is the color number for black,,making the box black...
The next box color is green..
Code:
background: #{$this->arcade->settings['ladder_qual_color']};
Change the green box color like this,,
Code:
background: #A0FEA0;
#A0FEA0 is the color green,,that is used...
Just change the # color to what you want..