aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2015-10-08 01:46:43 -0400
committerTeddy Wing2015-10-08 01:47:43 -0400
commit00571ace4745be3f4083867622dd7c7f42a7b103 (patch)
treebe12de653c5282d54c45564e5e4627da9ec695e9
parent2a0d95e135515b137a48d4b7b81ff01eaa664058 (diff)
downloadvim-space-vlaze-00571ace4745be3f4083867622dd7c7f42a7b103.tar.bz2
colors#Initialize: Set background colours
Set the background colour for the game board to be my normal colour scheme's background colour so that people with other colour schemes can see the game with the full set of colours I've been working with. Set the foreground colour to white to allow it to be readable over the dark dark grey background (otherwise we wouldn't be able to read the "Game Over" text).
-rw-r--r--autoload/space_vlaze/colors.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/autoload/space_vlaze/colors.vim b/autoload/space_vlaze/colors.vim
index 1d06dc0..ef08f83 100644
--- a/autoload/space_vlaze/colors.vim
+++ b/autoload/space_vlaze/colors.vim
@@ -8,4 +8,5 @@ function! space_vlaze#colors#Initialize()
highlight Player ctermfg=200 ctermbg=NONE
highlight Lives ctermfg=255 ctermbg=89
highlight Score ctermfg=255 ctermbg=92
+ highlight Normal ctermfg=255 ctermbg=235
endfunction