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.

163 lines
3.2KB

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