2
0

raylib_colors.c 1.9 KB

123456789101112131415161718192021222324252627282930
  1. // Custom raylib color palette for amazing visuals
  2. #define LIGHTGRAY (Color){ 200, 200, 200, 255 } // Light Gray
  3. #define GRAY (Color){ 130, 130, 130, 255 } // Gray
  4. #define DARKGRAY (Color){ 80, 80, 80, 255 } // Dark Gray
  5. #define YELLOW (Color){ 253, 249, 0, 255 } // Yellow
  6. #define GOLD (Color){ 255, 203, 0, 255 } // Gold
  7. #define ORANGE (Color){ 255, 161, 0, 255 } // Orange
  8. #define PINK (Color){ 255, 109, 194, 255 } // Pink
  9. #define RED (Color){ 230, 41, 55, 255 } // Red
  10. #define MAROON (Color){ 190, 33, 55, 255 } // Maroon
  11. #define GREEN (Color){ 0, 228, 48, 255 } // Green
  12. #define LIME (Color){ 0, 158, 47, 255 } // Lime
  13. #define DARKGREEN (Color){ 0, 117, 44, 255 } // Dark Green
  14. #define SKYBLUE (Color){ 102, 191, 255, 255 } // Sky Blue
  15. #define BLUE (Color){ 0, 121, 241, 255 } // Blue
  16. #define DARKBLUE (Color){ 0, 82, 172, 255 } // Dark Blue
  17. #define PURPLE (Color){ 200, 122, 255, 255 } // Purple
  18. #define VIOLET (Color){ 135, 60, 190, 255 } // Violet
  19. #define DARKPURPLE (Color){ 112, 31, 126, 255 } // Dark Purple
  20. #define BEIGE (Color){ 211, 176, 131, 255 } // Beige
  21. #define BROWN (Color){ 127, 106, 79, 255 } // Brown
  22. #define DARKBROWN (Color){ 76, 63, 47, 255 } // Dark Brown
  23. #define WHITE (Color){ 255, 255, 255, 255 } // White
  24. #define BLACK (Color){ 0, 0, 0, 255 } // Black
  25. #define BLANK (Color){ 0, 0, 0, 0 } // Transparent
  26. #define MAGENTA (Color){ 255, 0, 255, 255 } // Magenta
  27. #define RAYWHITE (Color){ 245, 245, 245, 255 } // Ray White