The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
3.0KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. COL(black)
  18. COL(white)
  19. COL(blue)
  20. COL(grey)
  21. COL(green)
  22. COL(red)
  23. COL(yellow)
  24. COL(aliceblue)
  25. COL(antiquewhite)
  26. COL(aqua)
  27. COL(aquamarine)
  28. COL(azure)
  29. COL(beige)
  30. COL(bisque)
  31. COL(blanchedalmond)
  32. COL(blueviolet)
  33. COL(brown)
  34. COL(burlywood)
  35. COL(cadetblue)
  36. COL(chartreuse)
  37. COL(chocolate)
  38. COL(coral)
  39. COL(cornflowerblue)
  40. COL(cornsilk)
  41. COL(crimson)
  42. COL(cyan)
  43. COL(darkblue)
  44. COL(darkcyan)
  45. COL(darkgoldenrod)
  46. COL(darkgrey)
  47. COL(darkgreen)
  48. COL(darkkhaki)
  49. COL(darkmagenta)
  50. COL(darkolivegreen)
  51. COL(darkorange)
  52. COL(darkorchid)
  53. COL(darkred)
  54. COL(darksalmon)
  55. COL(darkseagreen)
  56. COL(darkslateblue)
  57. COL(darkslategrey)
  58. COL(darkturquoise)
  59. COL(darkviolet)
  60. COL(deeppink)
  61. COL(deepskyblue)
  62. COL(dimgrey)
  63. COL(dodgerblue)
  64. COL(firebrick)
  65. COL(floralwhite)
  66. COL(forestgreen)
  67. COL(fuchsia)
  68. COL(gainsboro)
  69. COL(gold)
  70. COL(goldenrod)
  71. COL(greenyellow)
  72. COL(honeydew)
  73. COL(hotpink)
  74. COL(indianred)
  75. COL(indigo)
  76. COL(ivory)
  77. COL(khaki)
  78. COL(lavender)
  79. COL(lavenderblush)
  80. COL(lemonchiffon)
  81. COL(lightblue)
  82. COL(lightcoral)
  83. COL(lightcyan)
  84. COL(lightgoldenrodyellow)
  85. COL(lightgreen)
  86. COL(lightgrey)
  87. COL(lightpink)
  88. COL(lightsalmon)
  89. COL(lightseagreen)
  90. COL(lightskyblue)
  91. COL(lightslategrey)
  92. COL(lightsteelblue)
  93. COL(lightyellow)
  94. COL(lime)
  95. COL(limegreen)
  96. COL(linen)
  97. COL(magenta)
  98. COL(maroon)
  99. COL(mediumaquamarine)
  100. COL(mediumblue)
  101. COL(mediumorchid)
  102. COL(mediumpurple)
  103. COL(mediumseagreen)
  104. COL(mediumslateblue)
  105. COL(mediumspringgreen)
  106. COL(mediumturquoise)
  107. COL(mediumvioletred)
  108. COL(midnightblue)
  109. COL(mintcream)
  110. COL(mistyrose)
  111. COL(navajowhite)
  112. COL(navy)
  113. COL(oldlace)
  114. COL(olive)
  115. COL(olivedrab)
  116. COL(orange)
  117. COL(orangered)
  118. COL(orchid)
  119. COL(palegoldenrod)
  120. COL(palegreen)
  121. COL(paleturquoise)
  122. COL(palevioletred)
  123. COL(papayawhip)
  124. COL(peachpuff)
  125. COL(peru)
  126. COL(pink)
  127. COL(plum)
  128. COL(powderblue)
  129. COL(purple)
  130. COL(rosybrown)
  131. COL(royalblue)
  132. COL(saddlebrown)
  133. COL(salmon)
  134. COL(sandybrown)
  135. COL(seagreen)
  136. COL(seashell)
  137. COL(sienna)
  138. COL(silver)
  139. COL(skyblue)
  140. COL(slateblue)
  141. COL(slategrey)
  142. COL(snow)
  143. COL(springgreen)
  144. COL(steelblue)
  145. COL(tan)
  146. COL(teal)
  147. COL(thistle)
  148. COL(tomato)
  149. COL(turquoise)
  150. COL(violet)
  151. COL(wheat)
  152. COL(whitesmoke)
  153. COL(yellowgreen)