import java.applet.Applet;
import java.awt.*;

// This appears in Core Web Programming from
// Prentice Hall Publishers, and may be freely used
// or adapted. 1997 Marty Hall, hall@apl.jhu.edu.

public class ColorScrollbars extends Applet {
  public void init() {
    setLayout(new GridLayout(2, 1));
    add("Center",
	new Label("Scrollbar: Red BG, Yellow FG"));
    Scrollbar bar = new Scrollbar(Scrollbar.HORIZONTAL);
    bar.setBackground(Color.red);
    bar.setForeground(Color.green);
    add("South", bar);
  }
}

