// Copyright Andy Deck 2005, GNU Public License 2
// With the notable provision that any commercial use
// must be approved by the copyright holder.
import java.awt.*;

public class colorBut extends Canvas{
    public colorBut(Color c){
        setBackground(c);
        resize(20,20);
    }
}

