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.

164 lines
3.0KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. COL(black)
  20. COL(white)
  21. COL(blue)
  22. COL(grey)
  23. COL(green)
  24. COL(red)
  25. COL(yellow)
  26. COL(aliceblue)
  27. COL(antiquewhite)
  28. COL(aqua)
  29. COL(aquamarine)
  30. COL(azure)
  31. COL(beige)
  32. COL(bisque)
  33. COL(blanchedalmond)
  34. COL(blueviolet)
  35. COL(brown)
  36. COL(burlywood)
  37. COL(cadetblue)
  38. COL(chartreuse)
  39. COL(chocolate)
  40. COL(coral)
  41. COL(cornflowerblue)
  42. COL(cornsilk)
  43. COL(crimson)
  44. COL(cyan)
  45. COL(darkblue)
  46. COL(darkcyan)
  47. COL(darkgoldenrod)
  48. COL(darkgrey)
  49. COL(darkgreen)
  50. COL(darkkhaki)
  51. COL(darkmagenta)
  52. COL(darkolivegreen)
  53. COL(darkorange)
  54. COL(darkorchid)
  55. COL(darkred)
  56. COL(darksalmon)
  57. COL(darkseagreen)
  58. COL(darkslateblue)
  59. COL(darkslategrey)
  60. COL(darkturquoise)
  61. COL(darkviolet)
  62. COL(deeppink)
  63. COL(deepskyblue)
  64. COL(dimgrey)
  65. COL(dodgerblue)
  66. COL(firebrick)
  67. COL(floralwhite)
  68. COL(forestgreen)
  69. COL(fuchsia)
  70. COL(gainsboro)
  71. COL(gold)
  72. COL(goldenrod)
  73. COL(greenyellow)
  74. COL(honeydew)
  75. COL(hotpink)
  76. COL(indianred)
  77. COL(indigo)
  78. COL(ivory)
  79. COL(khaki)
  80. COL(lavender)
  81. COL(lavenderblush)
  82. COL(lemonchiffon)
  83. COL(lightblue)
  84. COL(lightcoral)
  85. COL(lightcyan)
  86. COL(lightgoldenrodyellow)
  87. COL(lightgreen)
  88. COL(lightgrey)
  89. COL(lightpink)
  90. COL(lightsalmon)
  91. COL(lightseagreen)
  92. COL(lightskyblue)
  93. COL(lightslategrey)
  94. COL(lightsteelblue)
  95. COL(lightyellow)
  96. COL(lime)
  97. COL(limegreen)
  98. COL(linen)
  99. COL(magenta)
  100. COL(maroon)
  101. COL(mediumaquamarine)
  102. COL(mediumblue)
  103. COL(mediumorchid)
  104. COL(mediumpurple)
  105. COL(mediumseagreen)
  106. COL(mediumslateblue)
  107. COL(mediumspringgreen)
  108. COL(mediumturquoise)
  109. COL(mediumvioletred)
  110. COL(midnightblue)
  111. COL(mintcream)
  112. COL(mistyrose)
  113. COL(navajowhite)
  114. COL(navy)
  115. COL(oldlace)
  116. COL(olive)
  117. COL(olivedrab)
  118. COL(orange)
  119. COL(orangered)
  120. COL(orchid)
  121. COL(palegoldenrod)
  122. COL(palegreen)
  123. COL(paleturquoise)
  124. COL(palevioletred)
  125. COL(papayawhip)
  126. COL(peachpuff)
  127. COL(peru)
  128. COL(pink)
  129. COL(plum)
  130. COL(powderblue)
  131. COL(purple)
  132. COL(rosybrown)
  133. COL(royalblue)
  134. COL(saddlebrown)
  135. COL(salmon)
  136. COL(sandybrown)
  137. COL(seagreen)
  138. COL(seashell)
  139. COL(sienna)
  140. COL(silver)
  141. COL(skyblue)
  142. COL(slateblue)
  143. COL(slategrey)
  144. COL(snow)
  145. COL(springgreen)
  146. COL(steelblue)
  147. COL(tan)
  148. COL(teal)
  149. COL(thistle)
  150. COL(tomato)
  151. COL(turquoise)
  152. COL(violet)
  153. COL(wheat)
  154. COL(whitesmoke)
  155. COL(yellowgreen)