Skip to content

Commit

Permalink
border now changes on inverse and the hp font color stays white alway…
Browse files Browse the repository at this point in the history
…s so it is readable
  • Loading branch information
Zertuk committed Jun 2, 2014
1 parent c981eee commit 445a013
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions options.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@ function inverseColors() {
if (inverse == false) {
$('body').css('color', 'black');
$('body').css('background-color', 'white');
$('#ectoplasmDiv').css('border-color', 'black');
$('#hp').css('color', 'white');
inverse = true;
}
else {
$('body').css('color', 'white');
$('body').css('background-color', 'black');
$('#ectoplasmDiv').css('border-color', 'white');
inverse = false;
}
}

0 comments on commit 445a013

Please sign in to comment.