home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / basic / library / zbasic / pia / color.bas < prev    next >
Encoding:
BASIC Source File  |  1987-10-09  |  658 b   |  19 lines

  1. REM *** "COLOR.BAS" ***
  2. 9815 REM Set color to full-blue (data entry)
  3. 9820 COLOR K(0,2),K(0,1),1: RETURN
  4. 9825 REM Set color to green (responses)
  5. 9830 COLOR K(1,2),K(1,1),1: RETURN
  6. 9835 REM Set color to red (errors)
  7. 9840 COLOR K(2,2),K(2,1),1: RETURN
  8. 9845 REM Set color to yellow (help screens)
  9. 9850 COLOR K(3,2),K(3,1),1: RETURN
  10. 9853 REM Set color to cyan (help screens)
  11. 9854 COLOR K(4,2),K(4,1),1: RETURN
  12. 9855 REM Set color to white (requested actions)
  13. 9860 COLOR K(5,2),K(5,1),1: RETURN
  14. 9863 COLOR K(6,2),K(6,1),1: RETURN
  15. 9864 COLOR K(7,2),K(7,1),1: RETURN
  16. 9865 REM Set color to yellow on blue (titles)
  17. 9870 COLOR K(8,2),K(8,1),1: RETURN
  18.  
  19.