% Script File: ShowWindowColor
% How to color the figure window and surrounding area.

  close all
  figure
  
% Draw a magenta plot window..
  set(gca,'color','m')
  
% Draw the surrounding area yellow...
  set(gcf,'color','y')