home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Editores / Perl5 / perl / lib / site / auto / Tk / Widget / bisque.al < prev    next >
Encoding:
Text File  |  1997-08-10  |  805 b   |  27 lines

  1. # NOTE: Derived from blib\lib\Tk\Widget.pm.  Changes made here will be lost.
  2. package Tk::Widget;
  3.  
  4. # tk_bisque --
  5. # Reset the Tk color palette to the old "bisque" colors.
  6. #
  7. # Arguments:
  8. # None.
  9. sub bisque
  10. {
  11.  shift->setPalette("activeBackground" => "#e6ceb1",
  12.                "activeForeground" => "black",
  13.                "background" => "#ffe4c4",
  14.                "disabledForeground" => "#b0b0b0",
  15.                "foreground" => "black",
  16.                "highlightBackground" => "#ffe4c4",
  17.                "highlightColor" => "black",
  18.                "insertBackground" => "black",
  19.                "selectColor" => "#b03060",
  20.                "selectBackground" => "#e6ceb1",
  21.                "selectForeground" => "black",
  22.                "troughColor" => "#cdb79e"
  23.               );
  24. }
  25.  
  26. 1;
  27.