Advertisement
Laudanum-user

Raylib colors (better)

Jun 14th, 2025
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.92 KB | None | 0 0
  1. // Some Basic Colors
  2. // NOTE: Custom raylib color palette for amazing visuals on WHITE background
  3. #define LIGHTGRAY  CLITERAL(Color){ 200, 200, 200, 255 }   // Light Gray
  4. #define GRAY       CLITERAL(Color){ 130, 130, 130, 255 }   // Gray
  5. #define DARKGRAY   CLITERAL(Color){ 80, 80, 80, 255 }      // Dark Gray
  6. #define YELLOW     CLITERAL(Color){ 253, 249, 0, 255 }     // Yellow
  7. #define GOLD       CLITERAL(Color){ 255, 203, 0, 255 }     // Gold
  8. #define ORANGE     CLITERAL(Color){ 255, 161, 0, 255 }     // Orange
  9. #define PINK       CLITERAL(Color){ 255, 109, 194, 255 }   // Pink
  10. #define RED        CLITERAL(Color){ 230, 41, 55, 255 }     // Red
  11. #define MAROON     CLITERAL(Color){ 190, 33, 55, 255 }     // Maroon
  12. #define GREEN      CLITERAL(Color){ 0, 228, 48, 255 }      // Green
  13. #define LIME       CLITERAL(Color){ 0, 158, 47, 255 }      // Lime
  14. #define DARKGREEN  CLITERAL(Color){ 0, 117, 44, 255 }      // Dark Green
  15. #define SKYBLUE    CLITERAL(Color){ 102, 191, 255, 255 }   // Sky Blue
  16. #define BLUE       CLITERAL(Color){ 0, 121, 241, 255 }     // Blue
  17. #define DARKBLUE   CLITERAL(Color){ 0, 82, 172, 255 }      // Dark Blue
  18. #define PURPLE     CLITERAL(Color){ 200, 122, 255, 255 }   // Purple
  19. #define VIOLET     CLITERAL(Color){ 135, 60, 190, 255 }    // Violet
  20. #define DARKPURPLE CLITERAL(Color){ 112, 31, 126, 255 }    // Dark Purple
  21. #define BEIGE      CLITERAL(Color){ 211, 176, 131, 255 }   // Beige
  22. #define BROWN      CLITERAL(Color){ 127, 106, 79, 255 }    // Brown
  23. #define DARKBROWN  CLITERAL(Color){ 76, 63, 47, 255 }      // Dark Brown
  24.  
  25. #define WHITE      CLITERAL(Color){ 255, 255, 255, 255 }   // White
  26. #define BLACK      CLITERAL(Color){ 0, 0, 0, 255 }         // Black
  27. #define BLANK      CLITERAL(Color){ 0, 0, 0, 0 }           // Blank (Transparent)
  28. #define MAGENTA    CLITERAL(Color){ 255, 0, 255, 255 }     // Magenta
  29. #define RAYWHITE   CLITERAL(Color){ 245, 245, 245, 255 }   // My own White (raylib logo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement