package uk.co.patrickhaston.mars;
import javax.swing.JTree;
import java.awt.Color;
import javax.swing.tree.TreeModel;

public class MTree extends JTree 
{
  public MTree()
  {
    super();
    this.setBackground(Color.black);
    this.setForeground(Color.orange);
  }

  public MTree(TreeModel model)
  {
    super(model);
    this.setBackground(Color.black);
    this.setForeground(Color.orange);
  }

}
