diff options
| author | Teddy Wing | 2015-10-08 01:46:43 -0400 |
|---|---|---|
| committer | Teddy Wing | 2015-10-08 01:47:43 -0400 |
| commit | 00571ace4745be3f4083867622dd7c7f42a7b103 (patch) | |
| tree | be12de653c5282d54c45564e5e4627da9ec695e9 | |
| parent | 2a0d95e135515b137a48d4b7b81ff01eaa664058 (diff) | |
| download | vim-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.vim | 1 |
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 |
