colors.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. ************************************************************
  3. * MODULE: r.le.setup/colors.h *
  4. * Version 5.0beta Oct. 1, 2001 *
  5. * *
  6. * AUTHOR: W.L. Baker, University of Wyoming *
  7. * BAKERWL@UWYO.EDU *
  8. * *
  9. * PURPOSE: To set up sampling areas, which can can then *
  10. * be used to obtain data using the r.le.dist, *
  11. * r.le.patch, and r.le.pixel programs. The *
  12. * colors.h file defines the colors *
  13. * *
  14. * COPYRIGHT: (C) 2001 by W.L. Baker *
  15. * *
  16. * This program is free software under the GNU General *
  17. * Public License(>=v2). Read the file COPYING that comes *
  18. * with GRASS for details *
  19. * *
  20. ************************************************************/
  21. #include <grass/config.h>
  22. #define RED 1
  23. #define ORANGE 2
  24. #define YELLOW 3
  25. #define GREEN 4
  26. #define BLUE 5
  27. #define INDIGO 6
  28. #define VIOLET 7
  29. #define WHITE 8
  30. #define BLACK 9
  31. #define GRAY 10
  32. #define BROWN 11
  33. #define MAGENTA 12
  34. #define AQUA 13