Advertisement
Guest User

New Colors Raylib

a guest
Nov 16th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 8.69 KB | None | 0 0
  1. // Gray Color
  2. #define GRAY50          (Color){236,239,241,255}
  3. #define GRAY100         (Color){207,216,220,255}
  4. #define GRAY200         (Color){207,216,220,255}
  5. #define GRAY300         (Color){144,164,174,255}
  6. #define GRAY400         (Color){120,144,156,255}
  7. #define GRAY500         (Color){ 96,125,139,255}
  8. #define GRAY600         (Color){ 84,110,122,255}
  9. #define GRAY700         (Color){ 69, 90,100,255}
  10. #define GRAY800         (Color){ 55, 71, 79,255}
  11. #define GRAY900         (Color){ 38, 50, 56,255}
  12.  
  13. // Red Color
  14. #define RED50           (Color){255,235,238,255}
  15. #define RED100          (Color){255,205,210,255}
  16. #define RED200          (Color){239,154,154,255}
  17. #define RED300          (Color){229,115,115,255}
  18. #define RED400          (Color){239, 83, 80,255}
  19. #define RED500          (Color){244, 67, 54,255}
  20. #define RED600          (Color){229, 57, 53,255}
  21. #define RED700          (Color){211, 47, 47,255}
  22. #define RED800          (Color){198, 40, 40,255}
  23. #define RED900          (Color){183, 28, 28,255}
  24.  
  25. // Green Color
  26. #define GREEN50         (Color){232,245,233,255}
  27. #define GREEN100        (Color){200,230,201,255}
  28. #define GREEN200        (Color){165,214,167,255}
  29. #define GREEN300        (Color){129,199,132,255}
  30. #define GREEN400        (Color){102,187,106,255}
  31. #define GREEN500        (Color){ 76,175, 80,255}
  32. #define GREEN600        (Color){ 67,160, 71,255}
  33. #define GREEN700        (Color){ 56,142, 60,255}
  34. #define GREEN800        (Color){ 46,125, 50,255}
  35. #define GREEN900        (Color){ 27, 94, 32,255}
  36.  
  37. // Blue Color
  38. #define BLUE50          (Color){227,242,253,255}
  39. #define BLUE100         (Color){187,222,251,255}
  40. #define BLUE200         (Color){144,202,249,255}
  41. #define BLUE300         (Color){100,181,246,255}
  42. #define BLUE400         (Color){ 66,165,245,255}
  43. #define BLUE500         (Color){ 33,150,243,255}
  44. #define BLUE600         (Color){ 30,136,229,255}
  45. #define BLUE700         (Color){ 25,118,210,255}
  46. #define BLUE800         (Color){ 21,101,192,255}
  47. #define BLUE900         (Color){ 13, 71,161,255}
  48.  
  49. // Yellow Color
  50. #define YELLOW50        (Color){255,253,231,255}
  51. #define YELLOW100       (Color){255,249,196,255}
  52. #define YELLOW200       (Color){255,245,157,255}
  53. #define YELLOW300       (Color){255,241,118,255}
  54. #define YELLOW400       (Color){255,238, 88,255}
  55. #define YELLOW500       (Color){255,235, 59,255}
  56. #define YELLOW600       (Color){253,216, 53,255}
  57. #define YELLOW700       (Color){251,192, 45,255}
  58. #define YELLOW800       (Color){249,168, 37,255}
  59. #define YELLOW900       (Color){245,127, 23,255}
  60.  
  61. // Orange Color
  62. #define ORANGE50        (Color){255,243,224,255}
  63. #define ORANGE100       (Color){255,224,178,255}
  64. #define ORANGE200       (Color){255,204,128,255}
  65. #define ORANGE300       (Color){255,183, 77,255}
  66. #define ORANGE400       (Color){255,167, 38,255}
  67. #define ORANGE500       (Color){255,152,  0,255}
  68. #define ORANGE600       (Color){251,140,  0,255}
  69. #define ORANGE700       (Color){245,124,  0,255}
  70. #define ORANGE800       (Color){239,108,  0,255}
  71. #define ORANGE900       (Color){230, 81,  0,255}
  72.  
  73. // Pink Color
  74. #define PINK50          (Color){252,228,236,255}
  75. #define PINK100         (Color){248,187,208,255}
  76. #define PINK200         (Color){244,143,177,255}
  77. #define PINK300         (Color){240, 98,146,255}
  78. #define PINK400         (Color){236, 64,122,255}
  79. #define PINK500         (Color){233, 30, 99,255}
  80. #define PINK600         (Color){216, 27, 96,255}
  81. #define PINK700         (Color){194, 24, 91,255}
  82. #define PINK800         (Color){173, 20, 87,255}
  83. #define PINK900         (Color){136, 14, 79,255}
  84.  
  85. // Brown Color
  86. #define BROWN50         (Color){239,235,233,255}
  87. #define BROWN100        (Color){215,204,200,255}
  88. #define BROWN200        (Color){188,170,164,255}
  89. #define BROWN300        (Color){161,136,127,255}
  90. #define BROWN400        (Color){141,110, 99,255}
  91. #define BROWN500        (Color){121, 85, 72,255}
  92. #define BROWN600        (Color){109, 76, 65,255}
  93. #define BROWN700        (Color){ 93, 64, 55,255}
  94. #define BROWN800        (Color){ 78, 52, 46,255}
  95. #define BROWN900        (Color){ 62, 39, 35,255}
  96.  
  97. // Amber Color
  98.  
  99. #define AMBER50         (Color){255,248,225,255}
  100. #define AMBER100        (Color){255,236,179,255}
  101. #define AMBER200        (Color){255,224,130,255}
  102. #define AMBER300        (Color){255,213, 79,255}
  103. #define AMBER400        (Color){255,202, 40,255}
  104. #define AMBER500        (Color){255,193,  7,255}
  105. #define AMBER600        (Color){255,179,  0,255}
  106. #define AMBER700        (Color){255,160,  0,255}
  107. #define AMBER800        (Color){255,143,  0,255}
  108. #define AMBER900        (Color){255,111,  0,255}
  109.  
  110. // Lime Color
  111. #define LIME50          (Color){249,251,231,255}
  112. #define LIME100         (Color){240,244,195,255}
  113. #define LIME200         (Color){230,238,156,255}
  114. #define LIME300         (Color){220,231,117,255}
  115. #define LIME400         (Color){212,225, 87,255}
  116. #define LIME500         (Color){205,220, 57,255}
  117. #define LIME600         (Color){192,202, 51,255}
  118. #define LIME700         (Color){175,180, 43,255}
  119. #define LIME800         (Color){158,157, 36,255}
  120. #define LIME900         (Color){130,119, 23,255}
  121.  
  122. // Purple Color
  123. #define PURPLE50        (Color){243,229,245,255}
  124. #define PURPLE100       (Color){225,190,231,255}
  125. #define PURPLE200       (Color){206,147,216,255}
  126. #define PURPLE300       (Color){186,104,200,255}
  127. #define PURPLE400       (Color){171, 71,188,255}
  128. #define PURPLE500       (Color){156, 39,176,255}
  129. #define PURPLE600       (Color){142, 36,170,255}
  130. #define PURPLE700       (Color){123, 31,162,255}
  131. #define PURPLE800       (Color){106, 27,154,255}
  132. #define PURPLE900       (Color){ 74, 20,140,255}
  133.  
  134. // Indigo Color
  135. #define INDIGO50        (Color){232,234,246,255}
  136. #define INDIGO100       (Color){197,202,233,255}
  137. #define INDIGO200       (Color){159,168,218,255}
  138. #define INDIGO300       (Color){121,134,203,255}
  139. #define INDIGO400       (Color){ 92,107,192,255}
  140. #define INDIGO500       (Color){ 63, 81,181,255}
  141. #define INDIGO600       (Color){ 57, 73,171,255}
  142. #define INDIGO700       (Color){ 48, 63,159,255}
  143. #define INDIGO800       (Color){ 40, 53,147,255}
  144. #define INDIGO900       (Color){ 26, 35,126,255}
  145.  
  146. // Cyan Color
  147. #define CYAN50          (Color){224,247,250,255}
  148. #define CYAN100         (Color){178,235,242,255}
  149. #define CYAN200         (Color){128,222,234,255}
  150. #define CYAN300         (Color){ 77,208,225,255}
  151. #define CYAN400         (Color){ 38,198,218,255}
  152. #define CYAN500         (Color){  0,188,212,255}
  153. #define CYAN600         (Color){  0,172,193,255}
  154. #define CYAN700         (Color){  0,151,167,255}
  155. #define CYAN800         (Color){  0,131,143,255}
  156. #define CYAN900         (Color){  0, 96,100,255}
  157.  
  158. // Teal Color
  159. #define TEAL50          (Color){224,242,241,255}
  160. #define TEAL100         (Color){178,223,219,255}
  161. #define TEAL200         (Color){128,203,196,255}
  162. #define TEAL300         (Color){ 77,182,172,255}
  163. #define TEAL400         (Color){ 38,166,154,255}
  164. #define TEAL500         (Color){  0,150,136,255}
  165. #define TEAL600         (Color){  0,137,123,255}
  166. #define TEAL700         (Color){  0,121,107,255}
  167. #define TEAL800         (Color){  0,105, 92,255}
  168. #define TEAL900         (Color){  0, 77, 64,255}
  169.  
  170. // Deep Orange Color
  171. #define DEEPORANGE50    (Color){251,233,231,255}
  172. #define DEEPORANGE100   (Color){255,204,188,255}
  173. #define DEEPORANGE200   (Color){255,171,145,255}
  174. #define DEEPORANGE300   (Color){255,138,101,255}
  175. #define DEEPORANGE400   (Color){255,112, 67,255}
  176. #define DEEPORANGE500   (Color){255, 87, 34,255}
  177. #define DEEPORANGE600   (Color){244, 81, 30,255}
  178. #define DEEPORANGE700   (Color){230, 74, 25,255}
  179. #define DEEPORANGE800   (Color){216, 67, 21,255}
  180. #define DEEPORANGE900   (Color){191, 54, 12,255}
  181.  
  182. // Light Blue Color
  183. #define LIGHTBLUE50     (Color){225,245,254,255}
  184. #define LIGHTBLUE100    (Color){179,229,252,255}
  185. #define LIGHTBLUE200    (Color){129,212,250,255}
  186. #define LIGHTBLUE300    (Color){ 79,195,247,255}
  187. #define LIGHTBLUE400    (Color){ 41,182,246,255}
  188. #define LIGHTBLUE500    (Color){  3,169,244,255}
  189. #define LIGHTBLUE600    (Color){  3,155,229,255}
  190. #define LIGHTBLUE700    (Color){  2,136,209,255}
  191. #define LIGHTBLUE800    (Color){  2,119,189,255}
  192. #define LIGHTBLUE900    (Color){  1, 87,155,255}
  193.  
  194. // Light Green Color
  195. #define LIGHTGREEN50    (Color){241,248,233,255}
  196. #define LIGHTGREEN100   (Color){220,237,200,255}
  197. #define LIGHTGREEN200   (Color){197,225,165,255}
  198. #define LIGHTGREEN300   (Color){174,213,129,255}
  199. #define LIGHTGREEN400   (Color){156,204,101,255}
  200. #define LIGHTGREEN500   (Color){139,195, 74,255}
  201. #define LIGHTGREEN600   (Color){124,179, 66,255}
  202. #define LIGHTGREEN700   (Color){104,159, 56,255}
  203. #define LIGHTGREEN800   (Color){ 85,139, 47,255}
  204. #define LIGHTGREEN900   (Color){ 51,105, 30,255}
  205.  
  206. // Blue Grey Color
  207. #define BLUEGREY50      (Color){236,239,241,255}
  208. #define BLUEGREY100     (Color){207,216,220,255}
  209. #define BLUEGREY200     (Color){176,190,197,255}
  210. #define BLUEGREY300     (Color){144,164,174,255}
  211. #define BLUEGREY400     (Color){120,144,156,255}
  212. #define BLUEGREY500     (Color){ 96,125,139,255}
  213. #define BLUEGREY600     (Color){ 84,110,122,255}
  214. #define BLUEGREY700     (Color){ 69, 90,100,255}
  215. #define BLUEGREY800     (Color){ 55, 71, 79,255}
  216. #define BLUEGREY900     (Color){ 38, 50, 56,255}
  217.  
  218. // Clouds Color
  219. #define CLOUDS_50       (Color){253,254,254,255}
  220. #define CLOUDS_100      (Color){251,252,252,255}
  221. #define CLOUDS_200      (Color){247,249,249,255}
  222. #define CLOUDS_300      (Color){244,246,247,255}
  223. #define CLOUDS_400      (Color){240,243,244,255}
  224. #define CLOUDS_500      (Color){236,240,241,255}
  225. #define CLOUDS_600      (Color){208,211,212,255}
  226. #define CLOUDS_700      (Color){179,182,183,255}
  227. #define CLOUDS_800      (Color){151,154,154,255}
  228. #define CLOUDS_900      (Color){123,125,125,255}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement