Skip to content

Commit f98dac2

Browse files
Merge pull request #7 from TimoLin/green-colors
More features for the next release
2 parents d4c3194 + b6fd91d commit f98dac2

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/release-drafter.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
template: |
2+
## What's Changed
3+
4+
$CHANGES

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)