@@ -42,7 +42,7 @@ private void estilos() {
42
42
setSize (600 , 400 );
43
43
setBackground (Color .BLACK );
44
44
45
- jTitulo .setFont (new Font ("Vintage" , Font .BOLD , 60 ));
45
+ jTitulo .setFont (new Font ("Vintage" , Font .BOLD , 70 ));
46
46
jJuego .setFont (new Font ("Vintage" , Font .BOLD , 25 ));
47
47
jSalir .setFont (new Font ("Vintage" , Font .BOLD , 25 ));
48
48
@@ -55,13 +55,13 @@ private void posicionar() {
55
55
setLayout (null );
56
56
57
57
jTitulo .setSize (200 , 100 );
58
- jTitulo .setLocation ((getWidth () - jTitulo .getWidth ()) / 2 , 20 );
58
+ jTitulo .setLocation ((getWidth () - jTitulo .getWidth ()) / 2 , 40 );
59
59
60
60
jJuego .setSize (200 , 100 );
61
- jJuego .setLocation ((getWidth () - jTitulo .getWidth ()) / 2 , 140 );
61
+ jJuego .setLocation ((getWidth () - jTitulo .getWidth ()) / 2 , 160 );
62
62
63
63
jSalir .setSize (200 , 100 );
64
- jSalir .setLocation ((getWidth () - jTitulo .getWidth ()) / 2 , 240 );
64
+ jSalir .setLocation ((getWidth () - jTitulo .getWidth ()) / 2 , 250 );
65
65
}
66
66
67
67
@ Override
@@ -85,9 +85,9 @@ public void mouseReleased(MouseEvent e) { }
85
85
@ Override
86
86
public void mouseEntered (MouseEvent e ) {
87
87
if (e .getSource ().equals (jJuego )) {
88
- jJuego .setForeground (new Color (219 , 219 , 219 ));
88
+ jJuego .setForeground (new Color (150 , 150 , 150 ));
89
89
} else if (e .getSource ().equals (jSalir )) {
90
- jSalir .setForeground (new Color (219 , 219 , 219 ));
90
+ jSalir .setForeground (new Color (150 , 150 , 150 ));
91
91
}
92
92
}
93
93
0 commit comments