Skip to content

Commit bf6fc01

Browse files
authored
Merge pull request #2 from karlostcp/ramaJueves
Rama jueves
2 parents f4e6cdf + 65a6ef8 commit bf6fc01

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

base.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ footer, header, hgroup, menu, nav, section {
2929
display: block;
3030
}
3131
body {
32-
/* Add background-color declaration here */
32+
background-color: black;
3333
}
3434
ol, ul {
3535
list-style: none;

engine.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ var TitleScreen = function TitleScreen(title,subtitle,callback) {
170170
};
171171

172172
this.draw = function(ctx) {
173-
ctx.fillStyle = "#FFFFFF";
173+
ctx.fillStyle = "#00FF00";
174174

175175
ctx.font = "bold 40px bangers";
176176
var measure = ctx.measureText(title);
@@ -437,7 +437,7 @@ var GamePoints = function() {
437437
this.draw = function(ctx) {
438438
ctx.save();
439439
ctx.font = "bold 18px arial";
440-
ctx.fillStyle= "#FFFFFF";
440+
ctx.fillStyle= "#00FF00";
441441

442442
var txt = "" + Game.points;
443443
var i = pointsLength - txt.length, zeros = "";

game.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ var Starfield = function(speed,opacity,numStars,clear) {
9191
// If the clear option is set,
9292
// make the background black instead of transparent
9393
if(clear) {
94-
starCtx.fillStyle = "#000";
94+
starCtx.fillStyle = "#0F0";
9595
starCtx.fillRect(0,0,stars.width,stars.height);
9696
}
9797

0 commit comments

Comments
 (0)