/**
 * Material desenvolvido para as aulas 28 a 30 do 
 * Curso Técnico em Informática do Colégio Estadual do Paraná. 
 * Professor: André Aparecido da Silva 
 * Disponível em: http://www.oxnar.com.br/2017/3ati
**/
import java.awt.*;
import javax.swing.*;

public class Tela08
{
		JPanel Painel_Central = new JPanel();
    	public Tela08() 
    	{
    			JFrame Tela_Principal = new  JFrame(); 
				Color vermelhoEscuro = new Color(80, 10, 255);
				Tela_Principal.getContentPane().add(Painel_Central);
				Painel_Central.setBackground(vermelhoEscuro);
				Tela_Principal.setSize(400, 579);
				Tela_Principal.setVisible(true);
	    }
    	public static void main (String args [])
    	{
    			new Tela08();
    	}
}