Support Board
Date/Time: Sun, 24 Nov 2024 00:23:03 +0000
Post From: ASCIL Colors
[2024-11-11 14:04:23] |
gcUserStudies - Posts: 106 |
Check out the file called "sccolors.h" under the ACS_Source directory. It has a list of color constants Example: // Color constants const int COLOR_ALICEBLUE = RGB_COLOR(240, 248, 255); const int COLOR_ANTIQUEWHITE = RGB_COLOR(250, 235, 215); const int COLOR_AQUA = RGB_COLOR(0, 255, 255); const int COLOR_AQUAMARINE = RGB_COLOR(127, 255, 212); ... |