home *** CD-ROM | disk | FTP | other *** search
- REM *** "COLOR.BAS" ***
- 9815 REM Set color to full-blue (data entry)
- 9820 COLOR K(0,2),K(0,1),1: RETURN
- 9825 REM Set color to green (responses)
- 9830 COLOR K(1,2),K(1,1),1: RETURN
- 9835 REM Set color to red (errors)
- 9840 COLOR K(2,2),K(2,1),1: RETURN
- 9845 REM Set color to yellow (help screens)
- 9850 COLOR K(3,2),K(3,1),1: RETURN
- 9853 REM Set color to cyan (help screens)
- 9854 COLOR K(4,2),K(4,1),1: RETURN
- 9855 REM Set color to white (requested actions)
- 9860 COLOR K(5,2),K(5,1),1: RETURN
- 9863 COLOR K(6,2),K(6,1),1: RETURN
- 9864 COLOR K(7,2),K(7,1),1: RETURN
- 9865 REM Set color to yellow on blue (titles)
- 9870 COLOR K(8,2),K(8,1),1: RETURN
-
-