mnemorandom 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (358) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/CODE_OF_CONDUCT.md +70 -0
  4. data/Gemfile +12 -0
  5. data/Gemfile.lock +49 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +43 -0
  8. data/Rakefile +12 -0
  9. data/bin/console +15 -0
  10. data/bin/setup +8 -0
  11. data/lib/mnemorandom/version.rb +5 -0
  12. data/lib/mnemorandom.rb +30 -0
  13. data/vendor/git/corpora.git/.editorconfig +16 -0
  14. data/vendor/git/corpora.git/.github/workflows/test.yml +39 -0
  15. data/vendor/git/corpora.git/.gitignore +4 -0
  16. data/vendor/git/corpora.git/.travis.yml +17 -0
  17. data/vendor/git/corpora.git/Gruntfile.js +23 -0
  18. data/vendor/git/corpora.git/README.md +46 -0
  19. data/vendor/git/corpora.git/data/animals/ant_anatomy.json +107 -0
  20. data/vendor/git/corpora.git/data/animals/birds_antarctica.json +106 -0
  21. data/vendor/git/corpora.git/data/animals/birds_north_america.json +1448 -0
  22. data/vendor/git/corpora.git/data/animals/cats.json +100 -0
  23. data/vendor/git/corpora.git/data/animals/cephalopod_anatomy.json +281 -0
  24. data/vendor/git/corpora.git/data/animals/collateral_adjectives.json +1103 -0
  25. data/vendor/git/corpora.git/data/animals/common.json +139 -0
  26. data/vendor/git/corpora.git/data/animals/dinosaurs.json +1455 -0
  27. data/vendor/git/corpora.git/data/animals/dog_names.json +1005 -0
  28. data/vendor/git/corpora.git/data/animals/dogs-en-de.json +1814 -0
  29. data/vendor/git/corpora.git/data/animals/dogs.json +459 -0
  30. data/vendor/git/corpora.git/data/animals/donkeys.json +174 -0
  31. data/vendor/git/corpora.git/data/animals/horses.json +349 -0
  32. data/vendor/git/corpora.git/data/animals/ponies.json +175 -0
  33. data/vendor/git/corpora.git/data/animals/rabbits.json +55 -0
  34. data/vendor/git/corpora.git/data/archetypes/artifact.json +53 -0
  35. data/vendor/git/corpora.git/data/archetypes/character.json +257 -0
  36. data/vendor/git/corpora.git/data/archetypes/event.json +107 -0
  37. data/vendor/git/corpora.git/data/archetypes/setting.json +179 -0
  38. data/vendor/git/corpora.git/data/architecture/passages.json +35 -0
  39. data/vendor/git/corpora.git/data/architecture/rooms.json +113 -0
  40. data/vendor/git/corpora.git/data/art/isms.json +146 -0
  41. data/vendor/git/corpora.git/data/books/academic_subjects.json +261 -0
  42. data/vendor/git/corpora.git/data/books/bestsellers.json +258 -0
  43. data/vendor/git/corpora.git/data/colors/crayola.json +485 -0
  44. data/vendor/git/corpora.git/data/colors/dulux.json +42242 -0
  45. data/vendor/git/corpora.git/data/colors/fictional.json +47 -0
  46. data/vendor/git/corpora.git/data/colors/google_material_colors.json +294 -0
  47. data/vendor/git/corpora.git/data/colors/paints.json +4005 -0
  48. data/vendor/git/corpora.git/data/colors/palettes.json +1403 -0
  49. data/vendor/git/corpora.git/data/colors/web_colors.json +565 -0
  50. data/vendor/git/corpora.git/data/colors/wikipedia.json +4070 -0
  51. data/vendor/git/corpora.git/data/colors/xkcd.json +4749 -0
  52. data/vendor/git/corpora.git/data/corporations/cars.json +71 -0
  53. data/vendor/git/corpora.git/data/corporations/charities.json +105 -0
  54. data/vendor/git/corpora.git/data/corporations/djia.json +125 -0
  55. data/vendor/git/corpora.git/data/corporations/fortune500.json +506 -0
  56. data/vendor/git/corpora.git/data/corporations/industries.json +155 -0
  57. data/vendor/git/corpora.git/data/corporations/nasdaq.json +409 -0
  58. data/vendor/git/corpora.git/data/corporations/newspapers.json +107 -0
  59. data/vendor/git/corpora.git/data/divination/hexagrams.json +261 -0
  60. data/vendor/git/corpora.git/data/divination/tarot_interpretations.json +2593 -0
  61. data/vendor/git/corpora.git/data/divination/zodiac.json +274 -0
  62. data/vendor/git/corpora.git/data/film-tv/Westworld_quotes.json +326 -0
  63. data/vendor/git/corpora.git/data/film-tv/extended-netflix-categories.json +605 -0
  64. data/vendor/git/corpora.git/data/film-tv/game-of-thrones-houses.json +277 -0
  65. data/vendor/git/corpora.git/data/film-tv/iab_categories.json +1571 -0
  66. data/vendor/git/corpora.git/data/film-tv/look-around-you-shakespeare.json +28 -0
  67. data/vendor/git/corpora.git/data/film-tv/netflix-categories.json +216 -0
  68. data/vendor/git/corpora.git/data/film-tv/popular-movies.json +263 -0
  69. data/vendor/git/corpora.git/data/film-tv/tv_shows.json +1005 -0
  70. data/vendor/git/corpora.git/data/foods/apple_cultivars.json +1005 -0
  71. data/vendor/git/corpora.git/data/foods/bad_beers.json +104 -0
  72. data/vendor/git/corpora.git/data/foods/beer_categories.json +631 -0
  73. data/vendor/git/corpora.git/data/foods/beer_styles.json +144 -0
  74. data/vendor/git/corpora.git/data/foods/breads_and_pastries.json +62 -0
  75. data/vendor/git/corpora.git/data/foods/combine.json +96 -0
  76. data/vendor/git/corpora.git/data/foods/condiments.json +104 -0
  77. data/vendor/git/corpora.git/data/foods/curds.json +1969 -0
  78. data/vendor/git/corpora.git/data/foods/fruits.json +85 -0
  79. data/vendor/git/corpora.git/data/foods/herbs_n_spices.json +202 -0
  80. data/vendor/git/corpora.git/data/foods/hot_peppers.json +69 -0
  81. data/vendor/git/corpora.git/data/foods/iba_cocktails.json +82 -0
  82. data/vendor/git/corpora.git/data/foods/menuItems.json +1005 -0
  83. data/vendor/git/corpora.git/data/foods/pizzaToppings.json +30 -0
  84. data/vendor/git/corpora.git/data/foods/sandwiches.json +855 -0
  85. data/vendor/git/corpora.git/data/foods/sausages.json +208 -0
  86. data/vendor/git/corpora.git/data/foods/scotch_whiskey.json +82 -0
  87. data/vendor/git/corpora.git/data/foods/tea.json +533 -0
  88. data/vendor/git/corpora.git/data/foods/vegetable_cooking_times.json +310 -0
  89. data/vendor/git/corpora.git/data/foods/vegetables.json +125 -0
  90. data/vendor/git/corpora.git/data/foods/verbs.json +287 -0
  91. data/vendor/git/corpora.git/data/foods/wine_descriptions.json +108 -0
  92. data/vendor/git/corpora.git/data/games/League_of_legends_champion_names.json +150 -0
  93. data/vendor/git/corpora.git/data/games/bannedGames/argentina/bannedList.json +9 -0
  94. data/vendor/git/corpora.git/data/games/bannedGames/brazil/bannedList.json +53 -0
  95. data/vendor/git/corpora.git/data/games/bannedGames/china/bannedList.json +25 -0
  96. data/vendor/git/corpora.git/data/games/bannedGames/denmark/bannedList.json +9 -0
  97. data/vendor/git/corpora.git/data/games/bannedGames/germany/bannedList.json +457 -0
  98. data/vendor/git/corpora.git/data/games/bannedGames/saudi_arabia/bannedList.json +69 -0
  99. data/vendor/git/corpora.git/data/games/board_games.json +218 -0
  100. data/vendor/git/corpora.git/data/games/cluedo.json +65 -0
  101. data/vendor/git/corpora.git/data/games/dark_souls_iii_messages.json +367 -0
  102. data/vendor/git/corpora.git/data/games/jeopardy_questions.json +9005 -0
  103. data/vendor/git/corpora.git/data/games/pokemon.json +20684 -0
  104. data/vendor/git/corpora.git/data/games/rpg/rpg_designers.json +202 -0
  105. data/vendor/git/corpora.git/data/games/rpg/rpg_games.json +859 -0
  106. data/vendor/git/corpora.git/data/games/rpg/rpg_settings.json +103 -0
  107. data/vendor/git/corpora.git/data/games/scrabble.json +33 -0
  108. data/vendor/git/corpora.git/data/games/street_fighter_ii.json +73 -0
  109. data/vendor/git/corpora.git/data/games/trivial_pursuit.json +29 -0
  110. data/vendor/git/corpora.git/data/games/wrestling_moves.json +284 -0
  111. data/vendor/git/corpora.git/data/games/zelda.json +372 -0
  112. data/vendor/git/corpora.git/data/geography/anthropogenic_features.json +143 -0
  113. data/vendor/git/corpora.git/data/geography/canada_provinces_and_territories.json +16 -0
  114. data/vendor/git/corpora.git/data/geography/canadian_municipalities.json +606 -0
  115. data/vendor/git/corpora.git/data/geography/countries.json +203 -0
  116. data/vendor/git/corpora.git/data/geography/countries_with_capitals.json +202 -0
  117. data/vendor/git/corpora.git/data/geography/english_towns_cities.json +997 -0
  118. data/vendor/git/corpora.git/data/geography/environmental_hazards.json +76 -0
  119. data/vendor/git/corpora.git/data/geography/geographic_features.json +514 -0
  120. data/vendor/git/corpora.git/data/geography/japanese_prefectures.json +99 -0
  121. data/vendor/git/corpora.git/data/geography/london_underground_stations.json +1352 -0
  122. data/vendor/git/corpora.git/data/geography/nationalities.json +232 -0
  123. data/vendor/git/corpora.git/data/geography/norwegian_cities.json +370 -0
  124. data/vendor/git/corpora.git/data/geography/nyc_neighborhood_zips.json +395 -0
  125. data/vendor/git/corpora.git/data/geography/oceans.json +305 -0
  126. data/vendor/git/corpora.git/data/geography/rivers.json +1101 -0
  127. data/vendor/git/corpora.git/data/geography/sf_neighborhoods.json +455 -0
  128. data/vendor/git/corpora.git/data/geography/us_airport_codes.json +373 -0
  129. data/vendor/git/corpora.git/data/geography/us_cities.json +5006 -0
  130. data/vendor/git/corpora.git/data/geography/us_counties.json +2979 -0
  131. data/vendor/git/corpora.git/data/geography/us_metropolitan_areas.json +4488 -0
  132. data/vendor/git/corpora.git/data/geography/us_state_capitals.json +205 -0
  133. data/vendor/git/corpora.git/data/geography/venues.json +3656 -0
  134. data/vendor/git/corpora.git/data/geography/winds.json +117 -0
  135. data/vendor/git/corpora.git/data/governments/governmentForms.json +28 -0
  136. data/vendor/git/corpora.git/data/governments/mass-surveillance-project-names.json +215 -0
  137. data/vendor/git/corpora.git/data/governments/nsa_projects.json +213 -0
  138. data/vendor/git/corpora.git/data/governments/uk_political_parties.json +623 -0
  139. data/vendor/git/corpora.git/data/governments/us_federal_agencies.json +128 -0
  140. data/vendor/git/corpora.git/data/governments/us_mil_operations.json +3613 -0
  141. data/vendor/git/corpora.git/data/humans/2016_us_presidential_candidates.json +7329 -0
  142. data/vendor/git/corpora.git/data/humans/atus_activities.json +4617 -0
  143. data/vendor/git/corpora.git/data/humans/authors.json +506 -0
  144. data/vendor/git/corpora.git/data/humans/bodyParts.json +46 -0
  145. data/vendor/git/corpora.git/data/humans/britishActors.json +705 -0
  146. data/vendor/git/corpora.git/data/humans/celebrities.json +998 -0
  147. data/vendor/git/corpora.git/data/humans/descriptions.json +398 -0
  148. data/vendor/git/corpora.git/data/humans/englishHonorifics.json +226 -0
  149. data/vendor/git/corpora.git/data/humans/familyRelations.json +77 -0
  150. data/vendor/git/corpora.git/data/humans/famousDuos.json +194 -0
  151. data/vendor/git/corpora.git/data/humans/firstNames.json +400 -0
  152. data/vendor/git/corpora.git/data/humans/genders.json +82 -0
  153. data/vendor/git/corpora.git/data/humans/human_universals.json +374 -0
  154. data/vendor/git/corpora.git/data/humans/lastNames.json +205 -0
  155. data/vendor/git/corpora.git/data/humans/moods.json +771 -0
  156. data/vendor/git/corpora.git/data/humans/norwayFirstNamesBoys.json +822 -0
  157. data/vendor/git/corpora.git/data/humans/norwayFirstNamesGirls.json +929 -0
  158. data/vendor/git/corpora.git/data/humans/norwayLastNames.json +1003 -0
  159. data/vendor/git/corpora.git/data/humans/occupations.json +976 -0
  160. data/vendor/git/corpora.git/data/humans/prefixes.json +88 -0
  161. data/vendor/git/corpora.git/data/humans/richpeople.json +305 -0
  162. data/vendor/git/corpora.git/data/humans/scientists.json +333 -0
  163. data/vendor/git/corpora.git/data/humans/spanishFirstNames.json +460 -0
  164. data/vendor/git/corpora.git/data/humans/spanishLastNames.json +108 -0
  165. data/vendor/git/corpora.git/data/humans/spinalTapDrummers.json +93 -0
  166. data/vendor/git/corpora.git/data/humans/suffixes.json +50 -0
  167. data/vendor/git/corpora.git/data/humans/thirdPersonPronouns.json +9749 -0
  168. data/vendor/git/corpora.git/data/humans/tolkienCharacterNames.json +600 -0
  169. data/vendor/git/corpora.git/data/humans/us_presidents.json +2743 -0
  170. data/vendor/git/corpora.git/data/humans/wrestlers.json +99 -0
  171. data/vendor/git/corpora.git/data/instructions/burroughsinstructionset.json +216 -0
  172. data/vendor/git/corpora.git/data/instructions/laundry_care.json +149 -0
  173. data/vendor/git/corpora.git/data/materials/abridged-body-fluids.json +34 -0
  174. data/vendor/git/corpora.git/data/materials/building-materials.json +50 -0
  175. data/vendor/git/corpora.git/data/materials/carbon-allotropes.json +19 -0
  176. data/vendor/git/corpora.git/data/materials/decorative-stones.json +99 -0
  177. data/vendor/git/corpora.git/data/materials/fabrics.json +211 -0
  178. data/vendor/git/corpora.git/data/materials/fibers.json +33 -0
  179. data/vendor/git/corpora.git/data/materials/fictional-materials.json +170 -0
  180. data/vendor/git/corpora.git/data/materials/gemstones.json +357 -0
  181. data/vendor/git/corpora.git/data/materials/layperson-metals.json +23 -0
  182. data/vendor/git/corpora.git/data/materials/metals.json +97 -0
  183. data/vendor/git/corpora.git/data/materials/natural-materials.json +15 -0
  184. data/vendor/git/corpora.git/data/materials/packaging.json +32 -0
  185. data/vendor/git/corpora.git/data/materials/plastic-brands.json +9 -0
  186. data/vendor/git/corpora.git/data/materials/sculpture-materials.json +49 -0
  187. data/vendor/git/corpora.git/data/materials/technical-fabrics.json +16 -0
  188. data/vendor/git/corpora.git/data/mathematics/fibonnaciSequence.json +1492 -0
  189. data/vendor/git/corpora.git/data/mathematics/primes.json +1015 -0
  190. data/vendor/git/corpora.git/data/mathematics/primes_binary.json +1005 -0
  191. data/vendor/git/corpora.git/data/mathematics/trigonometry.json +24 -0
  192. data/vendor/git/corpora.git/data/medicine/cancer.json +1007 -0
  193. data/vendor/git/corpora.git/data/medicine/diagnoses.json +1006 -0
  194. data/vendor/git/corpora.git/data/medicine/diseases.json +1007 -0
  195. data/vendor/git/corpora.git/data/medicine/drugNameStems.json +470 -0
  196. data/vendor/git/corpora.git/data/medicine/drugs.json +1006 -0
  197. data/vendor/git/corpora.git/data/medicine/hospitals.json +963 -0
  198. data/vendor/git/corpora.git/data/medicine/infectious_diseases.json +122 -0
  199. data/vendor/git/corpora.git/data/medicine/symptoms.json +551 -0
  200. data/vendor/git/corpora.git/data/music/a_list_of_guitar_manufacturers.json +722 -0
  201. data/vendor/git/corpora.git/data/music/bands_that_have_opened_for_tool.json +37 -0
  202. data/vendor/git/corpora.git/data/music/female_classical_guitarists.json +260 -0
  203. data/vendor/git/corpora.git/data/music/genres.json +375 -0
  204. data/vendor/git/corpora.git/data/music/hamilton_musical_obcrecording_actors_characters.json +63 -0
  205. data/vendor/git/corpora.git/data/music/instruments.json +60 -0
  206. data/vendor/git/corpora.git/data/music/media-formats.json +62 -0
  207. data/vendor/git/corpora.git/data/music/mtv_day_one.json +1257 -0
  208. data/vendor/git/corpora.git/data/music/rock_hall_of_fame.json +891 -0
  209. data/vendor/git/corpora.git/data/music/xxl_freshman.json +17 -0
  210. data/vendor/git/corpora.git/data/mythology/egyptian_gods.json +279 -0
  211. data/vendor/git/corpora.git/data/mythology/greek_gods.json +36 -0
  212. data/vendor/git/corpora.git/data/mythology/greek_monsters.json +29 -0
  213. data/vendor/git/corpora.git/data/mythology/greek_myths_master.json +98 -0
  214. data/vendor/git/corpora.git/data/mythology/greek_titans.json +38 -0
  215. data/vendor/git/corpora.git/data/mythology/hebrew_god.json +69 -0
  216. data/vendor/git/corpora.git/data/mythology/lovecraft.json +100 -0
  217. data/vendor/git/corpora.git/data/mythology/monsters.json +91 -0
  218. data/vendor/git/corpora.git/data/mythology/norse_gods.json +75 -0
  219. data/vendor/git/corpora.git/data/mythology/roman_deities.json +30 -0
  220. data/vendor/git/corpora.git/data/objects/clothing.json +95 -0
  221. data/vendor/git/corpora.git/data/objects/corpora_winners.json +32 -0
  222. data/vendor/git/corpora.git/data/objects/objects.json +452 -0
  223. data/vendor/git/corpora.git/data/objects/premodern_weapons.json +55 -0
  224. data/vendor/git/corpora.git/data/plants/cannabis.json +426 -0
  225. data/vendor/git/corpora.git/data/plants/flowers.json +67 -0
  226. data/vendor/git/corpora.git/data/plants/plants.json +2526 -0
  227. data/vendor/git/corpora.git/data/psychology/personality_test.json +305 -0
  228. data/vendor/git/corpora.git/data/religion/christian_saints.json +6982 -0
  229. data/vendor/git/corpora.git/data/religion/fictional_religions.json +267 -0
  230. data/vendor/git/corpora.git/data/religion/parody_religions.json +20 -0
  231. data/vendor/git/corpora.git/data/religion/religions.json +880 -0
  232. data/vendor/git/corpora.git/data/science/elements.json +2835 -0
  233. data/vendor/git/corpora.git/data/science/hail_size.json +85 -0
  234. data/vendor/git/corpora.git/data/science/meteorology.json +659 -0
  235. data/vendor/git/corpora.git/data/science/minor_planets.json +1005 -0
  236. data/vendor/git/corpora.git/data/science/planets.json +241 -0
  237. data/vendor/git/corpora.git/data/science/pregnancy.json +220 -0
  238. data/vendor/git/corpora.git/data/science/toxic_chemicals.json +385 -0
  239. data/vendor/git/corpora.git/data/science/weather_conditions.json +269 -0
  240. data/vendor/git/corpora.git/data/societies_and_groups/animal_welfare.json +408 -0
  241. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/australia.json +24 -0
  242. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/canada.json +54 -0
  243. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/china.json +6 -0
  244. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/egypt.json +9 -0
  245. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/european_union.json +31 -0
  246. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/india.json +35 -0
  247. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/iran.json +7 -0
  248. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/israel.json +13 -0
  249. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/kazakhstan.json +11 -0
  250. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/russia.json +23 -0
  251. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/saudi_arabia.json +9 -0
  252. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/tunisia.json +3 -0
  253. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/turkey.json +15 -0
  254. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/ukraine.json +4 -0
  255. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json +31 -0
  256. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_kingdom.json +82 -0
  257. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_nations.json +37 -0
  258. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_states.json +73 -0
  259. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/coeducational_fraternities.json +107 -0
  260. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/defunct.json +107 -0
  261. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/fraternities.json +884 -0
  262. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/professional.json +574 -0
  263. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/service.json +90 -0
  264. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/sororities.json +674 -0
  265. data/vendor/git/corpora.git/data/societies_and_groups/semi_secret.json +146 -0
  266. data/vendor/git/corpora.git/data/sports/football/epl_teams.json +145 -0
  267. data/vendor/git/corpora.git/data/sports/football/laliga_teams.json +125 -0
  268. data/vendor/git/corpora.git/data/sports/football/serieA.json +104 -0
  269. data/vendor/git/corpora.git/data/sports/mlb_teams.json +245 -0
  270. data/vendor/git/corpora.git/data/sports/nba_mvps.json +254 -0
  271. data/vendor/git/corpora.git/data/sports/nba_teams.json +244 -0
  272. data/vendor/git/corpora.git/data/sports/nfl_teams.json +261 -0
  273. data/vendor/git/corpora.git/data/sports/nhl_teams.json +244 -0
  274. data/vendor/git/corpora.git/data/sports/olympics.json +572 -0
  275. data/vendor/git/corpora.git/data/sports/sports.json +972 -0
  276. data/vendor/git/corpora.git/data/technology/appliances.json +112 -0
  277. data/vendor/git/corpora.git/data/technology/computer_sciences.json +203 -0
  278. data/vendor/git/corpora.git/data/technology/fireworks.json +45 -0
  279. data/vendor/git/corpora.git/data/technology/guns_n_rifles.json +65 -0
  280. data/vendor/git/corpora.git/data/technology/knots.json +217 -0
  281. data/vendor/git/corpora.git/data/technology/lisp.json +70 -0
  282. data/vendor/git/corpora.git/data/technology/new_technologies.json +534 -0
  283. data/vendor/git/corpora.git/data/technology/photo_sharing_websites.json +42 -0
  284. data/vendor/git/corpora.git/data/technology/programming_languages.json +707 -0
  285. data/vendor/git/corpora.git/data/technology/programming_languages_popular.json +38 -0
  286. data/vendor/git/corpora.git/data/technology/social_networking_websites.json +217 -0
  287. data/vendor/git/corpora.git/data/technology/video_hosting_websites.json +98 -0
  288. data/vendor/git/corpora.git/data/transportation/commercial-aircraft.json +242 -0
  289. data/vendor/git/corpora.git/data/transportation/launchVehicleList.json +549 -0
  290. data/vendor/git/corpora.git/data/travel/lcc.json +378 -0
  291. data/vendor/git/corpora.git/data/words/adjs.json +965 -0
  292. data/vendor/git/corpora.git/data/words/adverbs.json +330 -0
  293. data/vendor/git/corpora.git/data/words/closed_pairs.json +203 -0
  294. data/vendor/git/corpora.git/data/words/common.json +986 -0
  295. data/vendor/git/corpora.git/data/words/compounds.json +13380 -0
  296. data/vendor/git/corpora.git/data/words/crash_blossoms.json +68 -0
  297. data/vendor/git/corpora.git/data/words/eggcorns.json +183 -0
  298. data/vendor/git/corpora.git/data/words/emoji/codePage437.json +261 -0
  299. data/vendor/git/corpora.git/data/words/emoji/cute_kaomoji.json +36 -0
  300. data/vendor/git/corpora.git/data/words/emoji/emoji.json +869 -0
  301. data/vendor/git/corpora.git/data/words/encouraging_words.json +53 -0
  302. data/vendor/git/corpora.git/data/words/ergative_verbs.json +286 -0
  303. data/vendor/git/corpora.git/data/words/expletives.json +615 -0
  304. data/vendor/git/corpora.git/data/words/harvard_sentences.json +728 -0
  305. data/vendor/git/corpora.git/data/words/infinitive_verbs.json +635 -0
  306. data/vendor/git/corpora.git/data/words/interjections.json +223 -0
  307. data/vendor/git/corpora.git/data/words/literature/infinitejest.json +155 -0
  308. data/vendor/git/corpora.git/data/words/literature/lovecraft_words.json +61 -0
  309. data/vendor/git/corpora.git/data/words/literature/mr_men_little_miss.json +94 -0
  310. data/vendor/git/corpora.git/data/words/literature/shakespeare_phrases.json +161 -0
  311. data/vendor/git/corpora.git/data/words/literature/shakespeare_sonnets.json +2929 -0
  312. data/vendor/git/corpora.git/data/words/literature/shakespeare_words.json +324 -0
  313. data/vendor/git/corpora.git/data/words/literature/technology_quotes.json +79 -0
  314. data/vendor/git/corpora.git/data/words/nouns.json +997 -0
  315. data/vendor/git/corpora.git/data/words/oprah_quotes.json +47 -0
  316. data/vendor/git/corpora.git/data/words/personal_nouns.json +9314 -0
  317. data/vendor/git/corpora.git/data/words/personal_pronouns.json +61 -0
  318. data/vendor/git/corpora.git/data/words/possessive_pronouns.json +43 -0
  319. data/vendor/git/corpora.git/data/words/prefix_root_suffix.json +3688 -0
  320. data/vendor/git/corpora.git/data/words/prepositions.json +135 -0
  321. data/vendor/git/corpora.git/data/words/proverbs.json +533 -0
  322. data/vendor/git/corpora.git/data/words/resume_action_words.json +142 -0
  323. data/vendor/git/corpora.git/data/words/rhymeless_words.json +125 -0
  324. data/vendor/git/corpora.git/data/words/spells.json +460 -0
  325. data/vendor/git/corpora.git/data/words/state_verbs.json +25 -0
  326. data/vendor/git/corpora.git/data/words/states_of_drunkenness.json +39 -0
  327. data/vendor/git/corpora.git/data/words/stopwords/ar.json +169 -0
  328. data/vendor/git/corpora.git/data/words/stopwords/bg.json +265 -0
  329. data/vendor/git/corpora.git/data/words/stopwords/cs.json +412 -0
  330. data/vendor/git/corpora.git/data/words/stopwords/da.json +70 -0
  331. data/vendor/git/corpora.git/data/words/stopwords/de.json +599 -0
  332. data/vendor/git/corpora.git/data/words/stopwords/en.json +862 -0
  333. data/vendor/git/corpora.git/data/words/stopwords/es.json +450 -0
  334. data/vendor/git/corpora.git/data/words/stopwords/fi.json +754 -0
  335. data/vendor/git/corpora.git/data/words/stopwords/fr.json +501 -0
  336. data/vendor/git/corpora.git/data/words/stopwords/gr.json +159 -0
  337. data/vendor/git/corpora.git/data/words/stopwords/it.json +439 -0
  338. data/vendor/git/corpora.git/data/words/stopwords/jp.json +50 -0
  339. data/vendor/git/corpora.git/data/words/stopwords/lv.json +171 -0
  340. data/vendor/git/corpora.git/data/words/stopwords/nl.json +275 -0
  341. data/vendor/git/corpora.git/data/words/stopwords/no.json +125 -0
  342. data/vendor/git/corpora.git/data/words/stopwords/pl.json +281 -0
  343. data/vendor/git/corpora.git/data/words/stopwords/pt.json +449 -0
  344. data/vendor/git/corpora.git/data/words/stopwords/ru.json +428 -0
  345. data/vendor/git/corpora.git/data/words/stopwords/sk.json +185 -0
  346. data/vendor/git/corpora.git/data/words/stopwords/sv.json +393 -0
  347. data/vendor/git/corpora.git/data/words/stopwords/tr.json +236 -0
  348. data/vendor/git/corpora.git/data/words/strange_words.json +65 -0
  349. data/vendor/git/corpora.git/data/words/ultraconserved.json +1673 -0
  350. data/vendor/git/corpora.git/data/words/units_of_time.json +32 -0
  351. data/vendor/git/corpora.git/data/words/us_president_quotes.json +202 -0
  352. data/vendor/git/corpora.git/data/words/verbs.json +2537 -0
  353. data/vendor/git/corpora.git/data/words/verbs_with_conjugations.json +13313 -0
  354. data/vendor/git/corpora.git/data/words/word_clues/clues_five.json +10296 -0
  355. data/vendor/git/corpora.git/data/words/word_clues/clues_four.json +6329 -0
  356. data/vendor/git/corpora.git/data/words/word_clues/clues_six.json +10909 -0
  357. data/vendor/git/corpora.git/package.json +23 -0
  358. metadata +403 -0
@@ -0,0 +1,4005 @@
1
+ {
2
+ "description": "List of assorted paint colors from various brands.",
3
+ "colors": [
4
+ {
5
+ "color": "A Touch of Tan",
6
+ "brand": "California Paints"
7
+ },
8
+ {
9
+ "color": "Across the Bay",
10
+ "brand": "California Paints"
11
+ },
12
+ {
13
+ "color": "Adirondack",
14
+ "brand": "California Paints"
15
+ },
16
+ {
17
+ "color": "After Dinner Mint",
18
+ "brand": "California Paints"
19
+ },
20
+ {
21
+ "color": "Almond Cookie",
22
+ "brand": "California Paints"
23
+ },
24
+ {
25
+ "color": "Aloe Can You Go?",
26
+ "brand": "California Paints"
27
+ },
28
+ {
29
+ "color": "Aloe Mist",
30
+ "brand": "California Paints"
31
+ },
32
+ {
33
+ "color": "Alpine Moon",
34
+ "brand": "California Paints"
35
+ },
36
+ {
37
+ "color": "Aluminum Blue",
38
+ "brand": "California Paints"
39
+ },
40
+ {
41
+ "color": "Amazing Amethyst",
42
+ "brand": "California Paints"
43
+ },
44
+ {
45
+ "color": "Amber Dawn",
46
+ "brand": "California Paints"
47
+ },
48
+ {
49
+ "color": "Antique Rose",
50
+ "brand": "California Paints"
51
+ },
52
+ {
53
+ "color": "Apricot Glow",
54
+ "brand": "California Paints"
55
+ },
56
+ {
57
+ "color": "Arabian Red",
58
+ "brand": "California Paints"
59
+ },
60
+ {
61
+ "color": "Armored Steel",
62
+ "brand": "California Paints"
63
+ },
64
+ {
65
+ "color": "Art Deco",
66
+ "brand": "California Paints"
67
+ },
68
+ {
69
+ "color": "Artificial Turf",
70
+ "brand": "California Paints"
71
+ },
72
+ {
73
+ "color": "Artistic Stone",
74
+ "brand": "California Paints"
75
+ },
76
+ {
77
+ "color": "Ashwood",
78
+ "brand": "California Paints"
79
+ },
80
+ {
81
+ "color": "Automotive",
82
+ "brand": "California Paints"
83
+ },
84
+ {
85
+ "color": "Autumn Bark",
86
+ "brand": "California Paints"
87
+ },
88
+ {
89
+ "color": "Aztec Aura",
90
+ "brand": "California Paints"
91
+ },
92
+ {
93
+ "color": "Baby Frog",
94
+ "brand": "California Paints"
95
+ },
96
+ {
97
+ "color": "Baby Seal",
98
+ "brand": "California Paints"
99
+ },
100
+ {
101
+ "color": "Badlands Sunset",
102
+ "brand": "California Paints"
103
+ },
104
+ {
105
+ "color": "Baja White",
106
+ "brand": "California Paints"
107
+ },
108
+ {
109
+ "color": "Baked Potato",
110
+ "brand": "California Paints"
111
+ },
112
+ {
113
+ "color": "Basil Pesto",
114
+ "brand": "California Paints"
115
+ },
116
+ {
117
+ "color": "Battle Harbor",
118
+ "brand": "California Paints"
119
+ },
120
+ {
121
+ "color": "Bay Fog",
122
+ "brand": "California Paints"
123
+ },
124
+ {
125
+ "color": "Beach Babies",
126
+ "brand": "California Paints"
127
+ },
128
+ {
129
+ "color": "Beaumont Brown",
130
+ "brand": "California Paints"
131
+ },
132
+ {
133
+ "color": "Beignet",
134
+ "brand": "California Paints"
135
+ },
136
+ {
137
+ "color": "Below Zero",
138
+ "brand": "California Paints"
139
+ },
140
+ {
141
+ "color": "Berry Frost",
142
+ "brand": "California Paints"
143
+ },
144
+ {
145
+ "color": "Brushed Clay",
146
+ "brand": "California Paints"
147
+ },
148
+ {
149
+ "color": "Bubblegum",
150
+ "brand": "California Paints"
151
+ },
152
+ {
153
+ "color": "Caramel Apple",
154
+ "brand": "California Paints"
155
+ },
156
+ {
157
+ "color": "Caramel Bar",
158
+ "brand": "California Paints"
159
+ },
160
+ {
161
+ "color": "Charmed Green",
162
+ "brand": "California Paints"
163
+ },
164
+ {
165
+ "color": "Cider Mill",
166
+ "brand": "California Paints"
167
+ },
168
+ {
169
+ "color": "Cinnamon Stick",
170
+ "brand": "California Paints"
171
+ },
172
+ {
173
+ "color": "Cocktail Olive",
174
+ "brand": "California Paints"
175
+ },
176
+ {
177
+ "color": "Confident Yellow",
178
+ "brand": "California Paints"
179
+ },
180
+ {
181
+ "color": "Coral Clay",
182
+ "brand": "California Paints"
183
+ },
184
+ {
185
+ "color": "Coyote",
186
+ "brand": "California Paints"
187
+ },
188
+ {
189
+ "color": "Crisp Lettuce",
190
+ "brand": "California Paints"
191
+ },
192
+ {
193
+ "color": "Crocodile Tears",
194
+ "brand": "California Paints"
195
+ },
196
+ {
197
+ "color": "Cultured Rose",
198
+ "brand": "California Paints"
199
+ },
200
+ {
201
+ "color": "Dark Cavern",
202
+ "brand": "California Paints"
203
+ },
204
+ {
205
+ "color": "Deep Carnation",
206
+ "brand": "California Paints"
207
+ },
208
+ {
209
+ "color": "Deep Coral",
210
+ "brand": "California Paints"
211
+ },
212
+ {
213
+ "color": "Deep Pine",
214
+ "brand": "California Paints"
215
+ },
216
+ {
217
+ "color": "Deep Sapphire",
218
+ "brand": "California Paints"
219
+ },
220
+ {
221
+ "color": "Encore Teal",
222
+ "brand": "California Paints"
223
+ },
224
+ {
225
+ "color": "English Holly",
226
+ "brand": "California Paints"
227
+ },
228
+ {
229
+ "color": "Faint Clover",
230
+ "brand": "California Paints"
231
+ },
232
+ {
233
+ "color": "Field Day",
234
+ "brand": "California Paints"
235
+ },
236
+ {
237
+ "color": "Flash of Orange",
238
+ "brand": "California Paints"
239
+ },
240
+ {
241
+ "color": "Fluorescent Lime",
242
+ "brand": "California Paints"
243
+ },
244
+ {
245
+ "color": "Four Leaf Clover",
246
+ "brand": "California Paints"
247
+ },
248
+ {
249
+ "color": "Fresh Thyme",
250
+ "brand": "California Paints"
251
+ },
252
+ {
253
+ "color": "Friar Tuck",
254
+ "brand": "California Paints"
255
+ },
256
+ {
257
+ "color": "Frosty Mint",
258
+ "brand": "California Paints"
259
+ },
260
+ {
261
+ "color": "Gardening",
262
+ "brand": "California Paints"
263
+ },
264
+ {
265
+ "color": "Garnet Evening",
266
+ "brand": "California Paints"
267
+ },
268
+ {
269
+ "color": "Glitzy Red",
270
+ "brand": "California Paints"
271
+ },
272
+ {
273
+ "color": "Grass Root",
274
+ "brand": "California Paints"
275
+ },
276
+ {
277
+ "color": "Green Lane",
278
+ "brand": "California Paints"
279
+ },
280
+ {
281
+ "color": "Green with Envy",
282
+ "brand": "California Paints"
283
+ },
284
+ {
285
+ "color": "Herbal",
286
+ "brand": "California Paints"
287
+ },
288
+ {
289
+ "color": "Hint of Spring",
290
+ "brand": "California Paints"
291
+ },
292
+ {
293
+ "color": "Holly Bush",
294
+ "brand": "California Paints"
295
+ },
296
+ {
297
+ "color": "Ice Glow",
298
+ "brand": "California Paints"
299
+ },
300
+ {
301
+ "color": "Irish Beauty",
302
+ "brand": "California Paints"
303
+ },
304
+ {
305
+ "color": "Irish Charm",
306
+ "brand": "California Paints"
307
+ },
308
+ {
309
+ "color": "Jade Bracelet",
310
+ "brand": "California Paints"
311
+ },
312
+ {
313
+ "color": "Jade Mountain",
314
+ "brand": "California Paints"
315
+ },
316
+ {
317
+ "color": "Kale",
318
+ "brand": "California Paints"
319
+ },
320
+ {
321
+ "color": "Magic Night",
322
+ "brand": "California Paints"
323
+ },
324
+ {
325
+ "color": "Marble Dust",
326
+ "brand": "California Paints"
327
+ },
328
+ {
329
+ "color": "Marshmallow Rose",
330
+ "brand": "California Paints"
331
+ },
332
+ {
333
+ "color": "Mid-Century White",
334
+ "brand": "California Paints"
335
+ },
336
+ {
337
+ "color": "Midland Tan",
338
+ "brand": "California Paints"
339
+ },
340
+ {
341
+ "color": "Midnight Blush",
342
+ "brand": "California Paints"
343
+ },
344
+ {
345
+ "color": "Mission Trail",
346
+ "brand": "California Paints"
347
+ },
348
+ {
349
+ "color": "Mist Spirit",
350
+ "brand": "California Paints"
351
+ },
352
+ {
353
+ "color": "Mist of Green",
354
+ "brand": "California Paints"
355
+ },
356
+ {
357
+ "color": "Misted Eve",
358
+ "brand": "California Paints"
359
+ },
360
+ {
361
+ "color": "Misty Hillside",
362
+ "brand": "California Paints"
363
+ },
364
+ {
365
+ "color": "Misty Lawn",
366
+ "brand": "California Paints"
367
+ },
368
+ {
369
+ "color": "Modern White",
370
+ "brand": "California Paints"
371
+ },
372
+ {
373
+ "color": "Molasses",
374
+ "brand": "California Paints"
375
+ },
376
+ {
377
+ "color": "Money",
378
+ "brand": "California Paints"
379
+ },
380
+ {
381
+ "color": "Monsoon",
382
+ "brand": "California Paints"
383
+ },
384
+ {
385
+ "color": "Montego Bay",
386
+ "brand": "California Paints"
387
+ },
388
+ {
389
+ "color": "Muslin",
390
+ "brand": "California Paints"
391
+ },
392
+ {
393
+ "color": "Natural Wool",
394
+ "brand": "California Paints"
395
+ },
396
+ {
397
+ "color": "Navy Teal",
398
+ "brand": "California Paints"
399
+ },
400
+ {
401
+ "color": "Neutral Era",
402
+ "brand": "California Paints"
403
+ },
404
+ {
405
+ "color": "New Wool",
406
+ "brand": "California Paints"
407
+ },
408
+ {
409
+ "color": "Northgate Green",
410
+ "brand": "California Paints"
411
+ },
412
+ {
413
+ "color": "Ocean Oasis",
414
+ "brand": "California Paints"
415
+ },
416
+ {
417
+ "color": "Orange Burst",
418
+ "brand": "California Paints"
419
+ },
420
+ {
421
+ "color": "Organic White",
422
+ "brand": "California Paints"
423
+ },
424
+ {
425
+ "color": "Pale Frost",
426
+ "brand": "California Paints"
427
+ },
428
+ {
429
+ "color": "Pale Morning",
430
+ "brand": "California Paints"
431
+ },
432
+ {
433
+ "color": "Passionate Plum",
434
+ "brand": "California Paints"
435
+ },
436
+ {
437
+ "color": "Peach",
438
+ "brand": "California Paints"
439
+ },
440
+ {
441
+ "color": "Rare Turquoise",
442
+ "brand": "California Paints"
443
+ },
444
+ {
445
+ "color": "Red Revival",
446
+ "brand": "California Paints"
447
+ },
448
+ {
449
+ "color": "Refined Green",
450
+ "brand": "California Paints"
451
+ },
452
+ {
453
+ "color": "Retro Peach",
454
+ "brand": "California Paints"
455
+ },
456
+ {
457
+ "color": "Revival Rose",
458
+ "brand": "California Paints"
459
+ },
460
+ {
461
+ "color": "Roman Brick",
462
+ "brand": "California Paints"
463
+ },
464
+ {
465
+ "color": "Shaded Sun",
466
+ "brand": "California Paints"
467
+ },
468
+ {
469
+ "color": "Shadow White",
470
+ "brand": "California Paints"
471
+ },
472
+ {
473
+ "color": "Shamrock Field",
474
+ "brand": "California Paints"
475
+ },
476
+ {
477
+ "color": "Sheer Lavender",
478
+ "brand": "California Paints"
479
+ },
480
+ {
481
+ "color": "Short and Sweet",
482
+ "brand": "California Paints"
483
+ },
484
+ {
485
+ "color": "Shrubbery",
486
+ "brand": "California Paints"
487
+ },
488
+ {
489
+ "color": "Siamese Kitten",
490
+ "brand": "California Paints"
491
+ },
492
+ {
493
+ "color": "Sidewalk Chalk",
494
+ "brand": "California Paints"
495
+ },
496
+ {
497
+ "color": "Silent Ivory",
498
+ "brand": "California Paints"
499
+ },
500
+ {
501
+ "color": "Silver Skate",
502
+ "brand": "California Paints"
503
+ },
504
+ {
505
+ "color": "Silver Spoon",
506
+ "brand": "California Paints"
507
+ },
508
+ {
509
+ "color": "Silver Springs",
510
+ "brand": "California Paints"
511
+ },
512
+ {
513
+ "color": "Sky Glass",
514
+ "brand": "California Paints"
515
+ },
516
+ {
517
+ "color": "Smart Cookie",
518
+ "brand": "California Paints"
519
+ },
520
+ {
521
+ "color": "Smoke and Mirrors",
522
+ "brand": "California Paints"
523
+ },
524
+ {
525
+ "color": "Snowy Shadow",
526
+ "brand": "California Paints"
527
+ },
528
+ {
529
+ "color": "Soaring Sky",
530
+ "brand": "California Paints"
531
+ },
532
+ {
533
+ "color": "Soft Lavender",
534
+ "brand": "California Paints"
535
+ },
536
+ {
537
+ "color": "Soft Moss",
538
+ "brand": "California Paints"
539
+ },
540
+ {
541
+ "color": "Soft Purple",
542
+ "brand": "California Paints"
543
+ },
544
+ {
545
+ "color": "Sour Lemon",
546
+ "brand": "California Paints"
547
+ },
548
+ {
549
+ "color": "South Gallery",
550
+ "brand": "California Paints"
551
+ },
552
+ {
553
+ "color": "Spacious Plain",
554
+ "brand": "California Paints"
555
+ },
556
+ {
557
+ "color": "Spacious Sky",
558
+ "brand": "California Paints"
559
+ },
560
+ {
561
+ "color": "Spanish White",
562
+ "brand": "California Paints"
563
+ },
564
+ {
565
+ "color": "Sparkling Frost",
566
+ "brand": "California Paints"
567
+ },
568
+ {
569
+ "color": "Spiced Berry",
570
+ "brand": "California Paints"
571
+ },
572
+ {
573
+ "color": "Spring Shower",
574
+ "brand": "California Paints"
575
+ },
576
+ {
577
+ "color": "Storm Cloud",
578
+ "brand": "California Paints"
579
+ },
580
+ {
581
+ "color": "Strong Punch",
582
+ "brand": "California Paints"
583
+ },
584
+ {
585
+ "color": "Succulent",
586
+ "brand": "California Paints"
587
+ },
588
+ {
589
+ "color": "Sullen Gold",
590
+ "brand": "California Paints"
591
+ },
592
+ {
593
+ "color": "Summerville Brown",
594
+ "brand": "California Paints"
595
+ },
596
+ {
597
+ "color": "Tawny Amber",
598
+ "brand": "California Paints"
599
+ },
600
+ {
601
+ "color": "Teal Waters",
602
+ "brand": "California Paints"
603
+ },
604
+ {
605
+ "color": "Teatime Mauve",
606
+ "brand": "California Paints"
607
+ },
608
+ {
609
+ "color": "Thinking of Hue",
610
+ "brand": "California Paints"
611
+ },
612
+ {
613
+ "color": "Trailing Vine",
614
+ "brand": "California Paints"
615
+ },
616
+ {
617
+ "color": "Treetop",
618
+ "brand": "California Paints"
619
+ },
620
+ {
621
+ "color": "Up North",
622
+ "brand": "California Paints"
623
+ },
624
+ {
625
+ "color": "Vibrant Honey",
626
+ "brand": "California Paints"
627
+ },
628
+ {
629
+ "color": "Weekend Gardener",
630
+ "brand": "California Paints"
631
+ },
632
+ {
633
+ "color": "Whisper of Grass",
634
+ "brand": "California Paints"
635
+ },
636
+ {
637
+ "color": "Wild Maple",
638
+ "brand": "California Paints"
639
+ },
640
+ {
641
+ "color": "Wintermint",
642
+ "brand": "California Paints"
643
+ },
644
+ {
645
+ "color": "Wonderful Life",
646
+ "brand": "California Paints"
647
+ },
648
+ {
649
+ "color": "World Peace",
650
+ "brand": "California Paints"
651
+ },
652
+ {
653
+ "color": "Woven Gold",
654
+ "brand": "California Paints"
655
+ },
656
+ {
657
+ "color": "Yellow Stone",
658
+ "brand": "California Paints"
659
+ },
660
+ {
661
+ "color": "York Plum",
662
+ "brand": "California Paints"
663
+ },
664
+ {
665
+ "color": "Young Fawn",
666
+ "brand": "California Paints"
667
+ },
668
+ {
669
+ "color": "Your Majesty",
670
+ "brand": "California Paints"
671
+ },
672
+ {
673
+ "color": "Yuma Gold",
674
+ "brand": "California Paints"
675
+ },
676
+ {
677
+ "color": "Zen",
678
+ "brand": "California Paints"
679
+ },
680
+ {
681
+ "color": "Abbot",
682
+ "brand": "Dulux"
683
+ },
684
+ {
685
+ "color": "Adeline",
686
+ "brand": "Dulux"
687
+ },
688
+ {
689
+ "color": "Adobe",
690
+ "brand": "Dulux"
691
+ },
692
+ {
693
+ "color": "Adriatic Blue",
694
+ "brand": "Dulux"
695
+ },
696
+ {
697
+ "color": "Aerobic Fix",
698
+ "brand": "Dulux"
699
+ },
700
+ {
701
+ "color": "Aerostatics",
702
+ "brand": "Dulux"
703
+ },
704
+ {
705
+ "color": "Affinity",
706
+ "brand": "Dulux"
707
+ },
708
+ {
709
+ "color": "Afloat",
710
+ "brand": "Dulux"
711
+ },
712
+ {
713
+ "color": "After Burn",
714
+ "brand": "Dulux"
715
+ },
716
+ {
717
+ "color": "Airborne",
718
+ "brand": "Dulux"
719
+ },
720
+ {
721
+ "color": "Airforce",
722
+ "brand": "Dulux"
723
+ },
724
+ {
725
+ "color": "Alaskan Cruise",
726
+ "brand": "Dulux"
727
+ },
728
+ {
729
+ "color": "Albeit",
730
+ "brand": "Dulux"
731
+ },
732
+ {
733
+ "color": "Alien",
734
+ "brand": "Dulux"
735
+ },
736
+ {
737
+ "color": "Aloe Vera",
738
+ "brand": "Dulux"
739
+ },
740
+ {
741
+ "color": "Alpha Centuri",
742
+ "brand": "Dulux"
743
+ },
744
+ {
745
+ "color": "Alpha Tango",
746
+ "brand": "Dulux"
747
+ },
748
+ {
749
+ "color": "Ambit",
750
+ "brand": "Dulux"
751
+ },
752
+ {
753
+ "color": "Amphibian",
754
+ "brand": "Dulux"
755
+ },
756
+ {
757
+ "color": "Ancient Olive",
758
+ "brand": "Dulux"
759
+ },
760
+ {
761
+ "color": "Angel Aura",
762
+ "brand": "Dulux"
763
+ },
764
+ {
765
+ "color": "Angel Kiss",
766
+ "brand": "Dulux"
767
+ },
768
+ {
769
+ "color": "Anita",
770
+ "brand": "Dulux"
771
+ },
772
+ {
773
+ "color": "Antarctic Deep",
774
+ "brand": "Dulux"
775
+ },
776
+ {
777
+ "color": "Antique Bear",
778
+ "brand": "Dulux"
779
+ },
780
+ {
781
+ "color": "Apple Cream",
782
+ "brand": "Dulux"
783
+ },
784
+ {
785
+ "color": "Applegate",
786
+ "brand": "Dulux"
787
+ },
788
+ {
789
+ "color": "Apricot Icecream",
790
+ "brand": "Dulux"
791
+ },
792
+ {
793
+ "color": "Apricot Mousse",
794
+ "brand": "Dulux"
795
+ },
796
+ {
797
+ "color": "Aqua Foam",
798
+ "brand": "Dulux"
799
+ },
800
+ {
801
+ "color": "Aquatic Cool",
802
+ "brand": "Dulux"
803
+ },
804
+ {
805
+ "color": "Aqueduct",
806
+ "brand": "Dulux"
807
+ },
808
+ {
809
+ "color": "Arabian Bake",
810
+ "brand": "Dulux"
811
+ },
812
+ {
813
+ "color": "Arctic Daisy",
814
+ "brand": "Dulux"
815
+ },
816
+ {
817
+ "color": "Arctic Rose",
818
+ "brand": "Dulux"
819
+ },
820
+ {
821
+ "color": "Aroma",
822
+ "brand": "Dulux"
823
+ },
824
+ {
825
+ "color": "Asphalt Blue",
826
+ "brand": "Dulux"
827
+ },
828
+ {
829
+ "color": "Assassin",
830
+ "brand": "Dulux"
831
+ },
832
+ {
833
+ "color": "Aster",
834
+ "brand": "Dulux"
835
+ },
836
+ {
837
+ "color": "Atelier",
838
+ "brand": "Dulux"
839
+ },
840
+ {
841
+ "color": "Atom Blue",
842
+ "brand": "Dulux"
843
+ },
844
+ {
845
+ "color": "Aumbry",
846
+ "brand": "Dulux"
847
+ },
848
+ {
849
+ "color": "Autumn Fall",
850
+ "brand": "Dulux"
851
+ },
852
+ {
853
+ "color": "Avocado Cream",
854
+ "brand": "Dulux"
855
+ },
856
+ {
857
+ "color": "Awaken",
858
+ "brand": "Dulux"
859
+ },
860
+ {
861
+ "color": "Babiana",
862
+ "brand": "Dulux"
863
+ },
864
+ {
865
+ "color": "Baby Berries",
866
+ "brand": "Dulux"
867
+ },
868
+ {
869
+ "color": "Baby Blue",
870
+ "brand": "Dulux"
871
+ },
872
+ {
873
+ "color": "Baby Motive",
874
+ "brand": "Dulux"
875
+ },
876
+ {
877
+ "color": "Baca Berry",
878
+ "brand": "Dulux"
879
+ },
880
+ {
881
+ "color": "Ballet Blue",
882
+ "brand": "Dulux"
883
+ },
884
+ {
885
+ "color": "Balsam Pear",
886
+ "brand": "Dulux"
887
+ },
888
+ {
889
+ "color": "Baltic",
890
+ "brand": "Dulux"
891
+ },
892
+ {
893
+ "color": "Baltic Trench",
894
+ "brand": "Dulux"
895
+ },
896
+ {
897
+ "color": "Banksia",
898
+ "brand": "Dulux"
899
+ },
900
+ {
901
+ "color": "Banksia Leaf",
902
+ "brand": "Dulux"
903
+ },
904
+ {
905
+ "color": "Base Camp",
906
+ "brand": "Dulux"
907
+ },
908
+ {
909
+ "color": "Basketweave Beige",
910
+ "brand": "Dulux"
911
+ },
912
+ {
913
+ "color": "Battle Blue",
914
+ "brand": "Dulux"
915
+ },
916
+ {
917
+ "color": "Beach Casuarina",
918
+ "brand": "Dulux"
919
+ },
920
+ {
921
+ "color": "Bean Counter",
922
+ "brand": "Dulux"
923
+ },
924
+ {
925
+ "color": "Bee Master",
926
+ "brand": "Dulux"
927
+ },
928
+ {
929
+ "color": "Befitting",
930
+ "brand": "Dulux"
931
+ },
932
+ {
933
+ "color": "Beggar",
934
+ "brand": "Dulux"
935
+ },
936
+ {
937
+ "color": "Belly Fire",
938
+ "brand": "Dulux"
939
+ },
940
+ {
941
+ "color": "Bengal Blue",
942
+ "brand": "Dulux"
943
+ },
944
+ {
945
+ "color": "Berry Mix",
946
+ "brand": "Dulux"
947
+ },
948
+ {
949
+ "color": "Bewitching",
950
+ "brand": "Dulux"
951
+ },
952
+ {
953
+ "color": "Billabong",
954
+ "brand": "Dulux"
955
+ },
956
+ {
957
+ "color": "Bird Of Paradise",
958
+ "brand": "Dulux"
959
+ },
960
+ {
961
+ "color": "Biro Blue",
962
+ "brand": "Dulux"
963
+ },
964
+ {
965
+ "color": "Blackberry Burgundy",
966
+ "brand": "Dulux"
967
+ },
968
+ {
969
+ "color": "Bladerunner",
970
+ "brand": "Dulux"
971
+ },
972
+ {
973
+ "color": "Blair",
974
+ "brand": "Dulux"
975
+ },
976
+ {
977
+ "color": "Bleached Coral",
978
+ "brand": "Dulux"
979
+ },
980
+ {
981
+ "color": "Blende Blue",
982
+ "brand": "Dulux"
983
+ },
984
+ {
985
+ "color": "Blonde Girl",
986
+ "brand": "Dulux"
987
+ },
988
+ {
989
+ "color": "Blood Mahogany",
990
+ "brand": "Dulux"
991
+ },
992
+ {
993
+ "color": "Blue Angora",
994
+ "brand": "Dulux"
995
+ },
996
+ {
997
+ "color": "Blue Ballad",
998
+ "brand": "Dulux"
999
+ },
1000
+ {
1001
+ "color": "Blue Ballerina",
1002
+ "brand": "Dulux"
1003
+ },
1004
+ {
1005
+ "color": "Blue Bay",
1006
+ "brand": "Dulux"
1007
+ },
1008
+ {
1009
+ "color": "Blue Beard",
1010
+ "brand": "Dulux"
1011
+ },
1012
+ {
1013
+ "color": "Blue Beauty",
1014
+ "brand": "Dulux"
1015
+ },
1016
+ {
1017
+ "color": "Blue Beret",
1018
+ "brand": "Dulux"
1019
+ },
1020
+ {
1021
+ "color": "Blue Blouse",
1022
+ "brand": "Dulux"
1023
+ },
1024
+ {
1025
+ "color": "Blue Bobbin",
1026
+ "brand": "Dulux"
1027
+ },
1028
+ {
1029
+ "color": "Blue Bottom Boat",
1030
+ "brand": "Dulux"
1031
+ },
1032
+ {
1033
+ "color": "Blue Brocade",
1034
+ "brand": "Dulux"
1035
+ },
1036
+ {
1037
+ "color": "Blue Buzz",
1038
+ "brand": "Dulux"
1039
+ },
1040
+ {
1041
+ "color": "Blue Charcoal",
1042
+ "brand": "Dulux"
1043
+ },
1044
+ {
1045
+ "color": "Blue Emerald",
1046
+ "brand": "Dulux"
1047
+ },
1048
+ {
1049
+ "color": "Blue Fin",
1050
+ "brand": "Dulux"
1051
+ },
1052
+ {
1053
+ "color": "Blue Heeler",
1054
+ "brand": "Dulux"
1055
+ },
1056
+ {
1057
+ "color": "Blue Heist",
1058
+ "brand": "Dulux"
1059
+ },
1060
+ {
1061
+ "color": "Blue Horizon",
1062
+ "brand": "Dulux"
1063
+ },
1064
+ {
1065
+ "color": "Blue Jasmine",
1066
+ "brand": "Dulux"
1067
+ },
1068
+ {
1069
+ "color": "Blue Kelp",
1070
+ "brand": "Dulux"
1071
+ },
1072
+ {
1073
+ "color": "Blue Limewash",
1074
+ "brand": "Dulux"
1075
+ },
1076
+ {
1077
+ "color": "Blue Linen",
1078
+ "brand": "Dulux"
1079
+ },
1080
+ {
1081
+ "color": "Blue Mercury",
1082
+ "brand": "Dulux"
1083
+ },
1084
+ {
1085
+ "color": "Blue Mist",
1086
+ "brand": "Dulux"
1087
+ },
1088
+ {
1089
+ "color": "Blue Mosque",
1090
+ "brand": "Dulux"
1091
+ },
1092
+ {
1093
+ "color": "Blue Nude",
1094
+ "brand": "Dulux"
1095
+ },
1096
+ {
1097
+ "color": "Blue Opal",
1098
+ "brand": "Dulux"
1099
+ },
1100
+ {
1101
+ "color": "Blue Prince",
1102
+ "brand": "Dulux"
1103
+ },
1104
+ {
1105
+ "color": "Blue Rhapsody",
1106
+ "brand": "Dulux"
1107
+ },
1108
+ {
1109
+ "color": "Blue Rinse",
1110
+ "brand": "Dulux"
1111
+ },
1112
+ {
1113
+ "color": "Blue Satin",
1114
+ "brand": "Dulux"
1115
+ },
1116
+ {
1117
+ "color": "Blue Venus",
1118
+ "brand": "Dulux"
1119
+ },
1120
+ {
1121
+ "color": "Blueberry Blush",
1122
+ "brand": "Dulux"
1123
+ },
1124
+ {
1125
+ "color": "Bluebound",
1126
+ "brand": "Dulux"
1127
+ },
1128
+ {
1129
+ "color": "Blunt",
1130
+ "brand": "Dulux"
1131
+ },
1132
+ {
1133
+ "color": "Boatswain",
1134
+ "brand": "Dulux"
1135
+ },
1136
+ {
1137
+ "color": "Bogart",
1138
+ "brand": "Dulux"
1139
+ },
1140
+ {
1141
+ "color": "Boiling Mud",
1142
+ "brand": "Dulux"
1143
+ },
1144
+ {
1145
+ "color": "Bold Eagle",
1146
+ "brand": "Dulux"
1147
+ },
1148
+ {
1149
+ "color": "Bottlebrush Blossom",
1150
+ "brand": "Dulux"
1151
+ },
1152
+ {
1153
+ "color": "Bowerbird Blue",
1154
+ "brand": "Dulux"
1155
+ },
1156
+ {
1157
+ "color": "Breakaway Blue",
1158
+ "brand": "Dulux"
1159
+ },
1160
+ {
1161
+ "color": "Bright Bluebell",
1162
+ "brand": "Dulux"
1163
+ },
1164
+ {
1165
+ "color": "Bright Lady",
1166
+ "brand": "Dulux"
1167
+ },
1168
+ {
1169
+ "color": "Bright Lettuce",
1170
+ "brand": "Dulux"
1171
+ },
1172
+ {
1173
+ "color": "Bright Spark",
1174
+ "brand": "Dulux"
1175
+ },
1176
+ {
1177
+ "color": "Bright Zenith",
1178
+ "brand": "Dulux"
1179
+ },
1180
+ {
1181
+ "color": "Bronze Medal",
1182
+ "brand": "Dulux"
1183
+ },
1184
+ {
1185
+ "color": "Broomstick",
1186
+ "brand": "Dulux"
1187
+ },
1188
+ {
1189
+ "color": "Brown Bear",
1190
+ "brand": "Dulux"
1191
+ },
1192
+ {
1193
+ "color": "Brown Beauty",
1194
+ "brand": "Dulux"
1195
+ },
1196
+ {
1197
+ "color": "Brown Fox",
1198
+ "brand": "Dulux"
1199
+ },
1200
+ {
1201
+ "color": "Bruin Spice",
1202
+ "brand": "Dulux"
1203
+ },
1204
+ {
1205
+ "color": "Brume",
1206
+ "brand": "Dulux"
1207
+ },
1208
+ {
1209
+ "color": "Brussels",
1210
+ "brand": "Dulux"
1211
+ },
1212
+ {
1213
+ "color": "Bubbles",
1214
+ "brand": "Dulux"
1215
+ },
1216
+ {
1217
+ "color": "Budding Bloom",
1218
+ "brand": "Dulux"
1219
+ },
1220
+ {
1221
+ "color": "Bull Kelp",
1222
+ "brand": "Dulux"
1223
+ },
1224
+ {
1225
+ "color": "Bull Ring",
1226
+ "brand": "Dulux"
1227
+ },
1228
+ {
1229
+ "color": "Bulrush",
1230
+ "brand": "Dulux"
1231
+ },
1232
+ {
1233
+ "color": "Buoyant",
1234
+ "brand": "Dulux"
1235
+ },
1236
+ {
1237
+ "color": "Buoyant Blue",
1238
+ "brand": "Dulux"
1239
+ },
1240
+ {
1241
+ "color": "Burdock",
1242
+ "brand": "Dulux"
1243
+ },
1244
+ {
1245
+ "color": "Burnt Earth",
1246
+ "brand": "Dulux"
1247
+ },
1248
+ {
1249
+ "color": "Butter Base",
1250
+ "brand": "Dulux"
1251
+ },
1252
+ {
1253
+ "color": "Butter Fingers",
1254
+ "brand": "Dulux"
1255
+ },
1256
+ {
1257
+ "color": "Butterfly Blue",
1258
+ "brand": "Dulux"
1259
+ },
1260
+ {
1261
+ "color": "Bypass",
1262
+ "brand": "Dulux"
1263
+ },
1264
+ {
1265
+ "color": "Cabal",
1266
+ "brand": "Dulux"
1267
+ },
1268
+ {
1269
+ "color": "Caboose",
1270
+ "brand": "Dulux"
1271
+ },
1272
+ {
1273
+ "color": "Cajun Brown",
1274
+ "brand": "Dulux"
1275
+ },
1276
+ {
1277
+ "color": "Cameo Pink",
1278
+ "brand": "Dulux"
1279
+ },
1280
+ {
1281
+ "color": "Camisole",
1282
+ "brand": "Dulux"
1283
+ },
1284
+ {
1285
+ "color": "Camouflage Green",
1286
+ "brand": "Dulux"
1287
+ },
1288
+ {
1289
+ "color": "Canadian Maple",
1290
+ "brand": "Dulux"
1291
+ },
1292
+ {
1293
+ "color": "Candela",
1294
+ "brand": "Dulux"
1295
+ },
1296
+ {
1297
+ "color": "Candyman",
1298
+ "brand": "Dulux"
1299
+ },
1300
+ {
1301
+ "color": "Cape Pond",
1302
+ "brand": "Dulux"
1303
+ },
1304
+ {
1305
+ "color": "Capital Yellow",
1306
+ "brand": "Dulux"
1307
+ },
1308
+ {
1309
+ "color": "Capsella",
1310
+ "brand": "Dulux"
1311
+ },
1312
+ {
1313
+ "color": "Captivated",
1314
+ "brand": "Dulux"
1315
+ },
1316
+ {
1317
+ "color": "Cargo River",
1318
+ "brand": "Dulux"
1319
+ },
1320
+ {
1321
+ "color": "Caribbean Turquoise",
1322
+ "brand": "Dulux"
1323
+ },
1324
+ {
1325
+ "color": "Carolina",
1326
+ "brand": "Dulux"
1327
+ },
1328
+ {
1329
+ "color": "Cat Mint",
1330
+ "brand": "Dulux"
1331
+ },
1332
+ {
1333
+ "color": "Cat's Purr",
1334
+ "brand": "Dulux"
1335
+ },
1336
+ {
1337
+ "color": "Catalan",
1338
+ "brand": "Dulux"
1339
+ },
1340
+ {
1341
+ "color": "Cave Lake",
1342
+ "brand": "Dulux"
1343
+ },
1344
+ {
1345
+ "color": "Celestine",
1346
+ "brand": "Dulux"
1347
+ },
1348
+ {
1349
+ "color": "Centaur",
1350
+ "brand": "Dulux"
1351
+ },
1352
+ {
1353
+ "color": "Chambray",
1354
+ "brand": "Dulux"
1355
+ },
1356
+ {
1357
+ "color": "Channel",
1358
+ "brand": "Dulux"
1359
+ },
1360
+ {
1361
+ "color": "Charcoal Blue",
1362
+ "brand": "Dulux"
1363
+ },
1364
+ {
1365
+ "color": "Cheater",
1366
+ "brand": "Dulux"
1367
+ },
1368
+ {
1369
+ "color": "Chicory",
1370
+ "brand": "Dulux"
1371
+ },
1372
+ {
1373
+ "color": "Chilly Spice",
1374
+ "brand": "Dulux"
1375
+ },
1376
+ {
1377
+ "color": "Chinchilla Chenille",
1378
+ "brand": "Dulux"
1379
+ },
1380
+ {
1381
+ "color": "Chinese Garden",
1382
+ "brand": "Dulux"
1383
+ },
1384
+ {
1385
+ "color": "Christobel",
1386
+ "brand": "Dulux"
1387
+ },
1388
+ {
1389
+ "color": "Citrino",
1390
+ "brand": "Dulux"
1391
+ },
1392
+ {
1393
+ "color": "Clary",
1394
+ "brand": "Dulux"
1395
+ },
1396
+ {
1397
+ "color": "Clay Bake",
1398
+ "brand": "Dulux"
1399
+ },
1400
+ {
1401
+ "color": "Clay Court",
1402
+ "brand": "Dulux"
1403
+ },
1404
+ {
1405
+ "color": "Clay Play",
1406
+ "brand": "Dulux"
1407
+ },
1408
+ {
1409
+ "color": "Clean Green",
1410
+ "brand": "Dulux"
1411
+ },
1412
+ {
1413
+ "color": "Clear Brook",
1414
+ "brand": "Dulux"
1415
+ },
1416
+ {
1417
+ "color": "Cold Current",
1418
+ "brand": "Dulux"
1419
+ },
1420
+ {
1421
+ "color": "Cold Sea Currents",
1422
+ "brand": "Dulux"
1423
+ },
1424
+ {
1425
+ "color": "Colonel Mustard",
1426
+ "brand": "Dulux"
1427
+ },
1428
+ {
1429
+ "color": "Colossus",
1430
+ "brand": "Dulux"
1431
+ },
1432
+ {
1433
+ "color": "Concealment",
1434
+ "brand": "Dulux"
1435
+ },
1436
+ {
1437
+ "color": "Conclave",
1438
+ "brand": "Dulux"
1439
+ },
1440
+ {
1441
+ "color": "Confederate",
1442
+ "brand": "Dulux"
1443
+ },
1444
+ {
1445
+ "color": "Congo Brown",
1446
+ "brand": "Dulux"
1447
+ },
1448
+ {
1449
+ "color": "Continental Waters",
1450
+ "brand": "Dulux"
1451
+ },
1452
+ {
1453
+ "color": "Cook's Bay",
1454
+ "brand": "Dulux"
1455
+ },
1456
+ {
1457
+ "color": "Cool Crayon",
1458
+ "brand": "Dulux"
1459
+ },
1460
+ {
1461
+ "color": "Copacabana",
1462
+ "brand": "Dulux"
1463
+ },
1464
+ {
1465
+ "color": "Copper Turquoise",
1466
+ "brand": "Dulux"
1467
+ },
1468
+ {
1469
+ "color": "Coppersmith",
1470
+ "brand": "Dulux"
1471
+ },
1472
+ {
1473
+ "color": "Corporate Green",
1474
+ "brand": "Dulux"
1475
+ },
1476
+ {
1477
+ "color": "Corral",
1478
+ "brand": "Dulux"
1479
+ },
1480
+ {
1481
+ "color": "Cosmic Aura",
1482
+ "brand": "Dulux"
1483
+ },
1484
+ {
1485
+ "color": "Couscous",
1486
+ "brand": "Dulux"
1487
+ },
1488
+ {
1489
+ "color": "Creamed Caramel",
1490
+ "brand": "Dulux"
1491
+ },
1492
+ {
1493
+ "color": "Crossbow",
1494
+ "brand": "Dulux"
1495
+ },
1496
+ {
1497
+ "color": "Cruel Sea",
1498
+ "brand": "Dulux"
1499
+ },
1500
+ {
1501
+ "color": "Crunch",
1502
+ "brand": "Dulux"
1503
+ },
1504
+ {
1505
+ "color": "Crushed Almond",
1506
+ "brand": "Dulux"
1507
+ },
1508
+ {
1509
+ "color": "Crypt",
1510
+ "brand": "Dulux"
1511
+ },
1512
+ {
1513
+ "color": "Crystal Apple",
1514
+ "brand": "Dulux"
1515
+ },
1516
+ {
1517
+ "color": "Cuba Brown",
1518
+ "brand": "Dulux"
1519
+ },
1520
+ {
1521
+ "color": "Cuban Rhythm",
1522
+ "brand": "Dulux"
1523
+ },
1524
+ {
1525
+ "color": "Cucumber Cream",
1526
+ "brand": "Dulux"
1527
+ },
1528
+ {
1529
+ "color": "Cucumber Crush",
1530
+ "brand": "Dulux"
1531
+ },
1532
+ {
1533
+ "color": "Cuddlepot",
1534
+ "brand": "Dulux"
1535
+ },
1536
+ {
1537
+ "color": "Cupcake Rose",
1538
+ "brand": "Dulux"
1539
+ },
1540
+ {
1541
+ "color": "Cushion Bush",
1542
+ "brand": "Dulux"
1543
+ },
1544
+ {
1545
+ "color": "Dancer",
1546
+ "brand": "Dulux"
1547
+ },
1548
+ {
1549
+ "color": "Danger Ridge",
1550
+ "brand": "Dulux"
1551
+ },
1552
+ {
1553
+ "color": "Dark Rainforest",
1554
+ "brand": "Dulux"
1555
+ },
1556
+ {
1557
+ "color": "Dark Strawberry",
1558
+ "brand": "Dulux"
1559
+ },
1560
+ {
1561
+ "color": "Day Glow",
1562
+ "brand": "Dulux"
1563
+ },
1564
+ {
1565
+ "color": "Decoration Blue",
1566
+ "brand": "Dulux"
1567
+ },
1568
+ {
1569
+ "color": "Decore Splash",
1570
+ "brand": "Dulux"
1571
+ },
1572
+ {
1573
+ "color": "Deep Caribbean",
1574
+ "brand": "Dulux"
1575
+ },
1576
+ {
1577
+ "color": "Deep Clay",
1578
+ "brand": "Dulux"
1579
+ },
1580
+ {
1581
+ "color": "Deep Night",
1582
+ "brand": "Dulux"
1583
+ },
1584
+ {
1585
+ "color": "Deep Sanction",
1586
+ "brand": "Dulux"
1587
+ },
1588
+ {
1589
+ "color": "Deep Sea Diver",
1590
+ "brand": "Dulux"
1591
+ },
1592
+ {
1593
+ "color": "Deep South",
1594
+ "brand": "Dulux"
1595
+ },
1596
+ {
1597
+ "color": "Deep Turquoise",
1598
+ "brand": "Dulux"
1599
+ },
1600
+ {
1601
+ "color": "Deep Velvet",
1602
+ "brand": "Dulux"
1603
+ },
1604
+ {
1605
+ "color": "Delta Break",
1606
+ "brand": "Dulux"
1607
+ },
1608
+ {
1609
+ "color": "Desert Bud",
1610
+ "brand": "Dulux"
1611
+ },
1612
+ {
1613
+ "color": "Desert Cover",
1614
+ "brand": "Dulux"
1615
+ },
1616
+ {
1617
+ "color": "Desert Soil",
1618
+ "brand": "Dulux"
1619
+ },
1620
+ {
1621
+ "color": "Devil Blue",
1622
+ "brand": "Dulux"
1623
+ },
1624
+ {
1625
+ "color": "Dickie Bird",
1626
+ "brand": "Dulux"
1627
+ },
1628
+ {
1629
+ "color": "Distant Sky",
1630
+ "brand": "Dulux"
1631
+ },
1632
+ {
1633
+ "color": "Divine",
1634
+ "brand": "Dulux"
1635
+ },
1636
+ {
1637
+ "color": "Doe",
1638
+ "brand": "Dulux"
1639
+ },
1640
+ {
1641
+ "color": "Domain",
1642
+ "brand": "Dulux"
1643
+ },
1644
+ {
1645
+ "color": "Donkey Brown",
1646
+ "brand": "Dulux"
1647
+ },
1648
+ {
1649
+ "color": "Dormitory",
1650
+ "brand": "Dulux"
1651
+ },
1652
+ {
1653
+ "color": "Double Jeopardy",
1654
+ "brand": "Dulux"
1655
+ },
1656
+ {
1657
+ "color": "Dreamweaver",
1658
+ "brand": "Dulux"
1659
+ },
1660
+ {
1661
+ "color": "Dresden Doll",
1662
+ "brand": "Dulux"
1663
+ },
1664
+ {
1665
+ "color": "Dreyfus",
1666
+ "brand": "Dulux"
1667
+ },
1668
+ {
1669
+ "color": "Duomo",
1670
+ "brand": "Dulux"
1671
+ },
1672
+ {
1673
+ "color": "Earth Warming",
1674
+ "brand": "Dulux"
1675
+ },
1676
+ {
1677
+ "color": "Easily Suede",
1678
+ "brand": "Dulux"
1679
+ },
1680
+ {
1681
+ "color": "Eclectic",
1682
+ "brand": "Dulux"
1683
+ },
1684
+ {
1685
+ "color": "Edvard",
1686
+ "brand": "Dulux"
1687
+ },
1688
+ {
1689
+ "color": "Egyptian Teal",
1690
+ "brand": "Dulux"
1691
+ },
1692
+ {
1693
+ "color": "Electromagnetic",
1694
+ "brand": "Dulux"
1695
+ },
1696
+ {
1697
+ "color": "Elfin Games",
1698
+ "brand": "Dulux"
1699
+ },
1700
+ {
1701
+ "color": "Elusive Blue",
1702
+ "brand": "Dulux"
1703
+ },
1704
+ {
1705
+ "color": "Emerald Green",
1706
+ "brand": "Dulux"
1707
+ },
1708
+ {
1709
+ "color": "Emerald Wave",
1710
+ "brand": "Dulux"
1711
+ },
1712
+ {
1713
+ "color": "Empress Envy",
1714
+ "brand": "Dulux"
1715
+ },
1716
+ {
1717
+ "color": "Enchanted Wood",
1718
+ "brand": "Dulux"
1719
+ },
1720
+ {
1721
+ "color": "Encounter",
1722
+ "brand": "Dulux"
1723
+ },
1724
+ {
1725
+ "color": "Endless",
1726
+ "brand": "Dulux"
1727
+ },
1728
+ {
1729
+ "color": "Enhance",
1730
+ "brand": "Dulux"
1731
+ },
1732
+ {
1733
+ "color": "Enviable",
1734
+ "brand": "Dulux"
1735
+ },
1736
+ {
1737
+ "color": "Equanimity",
1738
+ "brand": "Dulux"
1739
+ },
1740
+ {
1741
+ "color": "Eskimo White",
1742
+ "brand": "Dulux"
1743
+ },
1744
+ {
1745
+ "color": "Estuary Blue",
1746
+ "brand": "Dulux"
1747
+ },
1748
+ {
1749
+ "color": "Ethereal Blue",
1750
+ "brand": "Dulux"
1751
+ },
1752
+ {
1753
+ "color": "Evening East",
1754
+ "brand": "Dulux"
1755
+ },
1756
+ {
1757
+ "color": "Evening Fizz",
1758
+ "brand": "Dulux"
1759
+ },
1760
+ {
1761
+ "color": "Evening Sunset",
1762
+ "brand": "Dulux"
1763
+ },
1764
+ {
1765
+ "color": "Evergreen",
1766
+ "brand": "Dulux"
1767
+ },
1768
+ {
1769
+ "color": "Eyefull",
1770
+ "brand": "Dulux"
1771
+ },
1772
+ {
1773
+ "color": "Eyre",
1774
+ "brand": "Dulux"
1775
+ },
1776
+ {
1777
+ "color": "Facemark",
1778
+ "brand": "Dulux"
1779
+ },
1780
+ {
1781
+ "color": "Fair Maiden",
1782
+ "brand": "Dulux"
1783
+ },
1784
+ {
1785
+ "color": "Fairway Green",
1786
+ "brand": "Dulux"
1787
+ },
1788
+ {
1789
+ "color": "Featherbed",
1790
+ "brand": "Dulux"
1791
+ },
1792
+ {
1793
+ "color": "Federal Fund",
1794
+ "brand": "Dulux"
1795
+ },
1796
+ {
1797
+ "color": "Feijoa",
1798
+ "brand": "Dulux"
1799
+ },
1800
+ {
1801
+ "color": "Ferry",
1802
+ "brand": "Dulux"
1803
+ },
1804
+ {
1805
+ "color": "Fiddler",
1806
+ "brand": "Dulux"
1807
+ },
1808
+ {
1809
+ "color": "Fiddlesticks",
1810
+ "brand": "Dulux"
1811
+ },
1812
+ {
1813
+ "color": "First Landing",
1814
+ "brand": "Dulux"
1815
+ },
1816
+ {
1817
+ "color": "Fish Net Blue",
1818
+ "brand": "Dulux"
1819
+ },
1820
+ {
1821
+ "color": "Fisher King",
1822
+ "brand": "Dulux"
1823
+ },
1824
+ {
1825
+ "color": "Fizz",
1826
+ "brand": "Dulux"
1827
+ },
1828
+ {
1829
+ "color": "Flinder's Green",
1830
+ "brand": "Dulux"
1831
+ },
1832
+ {
1833
+ "color": "Flying Carpet",
1834
+ "brand": "Dulux"
1835
+ },
1836
+ {
1837
+ "color": "Foille",
1838
+ "brand": "Dulux"
1839
+ },
1840
+ {
1841
+ "color": "Foresight",
1842
+ "brand": "Dulux"
1843
+ },
1844
+ {
1845
+ "color": "Forest Blues",
1846
+ "brand": "Dulux"
1847
+ },
1848
+ {
1849
+ "color": "Fragrant Wand",
1850
+ "brand": "Dulux"
1851
+ },
1852
+ {
1853
+ "color": "Fresco Green",
1854
+ "brand": "Dulux"
1855
+ },
1856
+ {
1857
+ "color": "Friends",
1858
+ "brand": "Dulux"
1859
+ },
1860
+ {
1861
+ "color": "Frog Prince",
1862
+ "brand": "Dulux"
1863
+ },
1864
+ {
1865
+ "color": "Fudge",
1866
+ "brand": "Dulux"
1867
+ },
1868
+ {
1869
+ "color": "Full Of Life",
1870
+ "brand": "Dulux"
1871
+ },
1872
+ {
1873
+ "color": "Funk",
1874
+ "brand": "Dulux"
1875
+ },
1876
+ {
1877
+ "color": "Gecko",
1878
+ "brand": "Dulux"
1879
+ },
1880
+ {
1881
+ "color": "Germania",
1882
+ "brand": "Dulux"
1883
+ },
1884
+ {
1885
+ "color": "Glacier Blue",
1886
+ "brand": "Dulux"
1887
+ },
1888
+ {
1889
+ "color": "Glacier Green",
1890
+ "brand": "Dulux"
1891
+ },
1892
+ {
1893
+ "color": "Gladeye",
1894
+ "brand": "Dulux"
1895
+ },
1896
+ {
1897
+ "color": "Glen",
1898
+ "brand": "Dulux"
1899
+ },
1900
+ {
1901
+ "color": "Glide Time",
1902
+ "brand": "Dulux"
1903
+ },
1904
+ {
1905
+ "color": "Glossy Olive",
1906
+ "brand": "Dulux"
1907
+ },
1908
+ {
1909
+ "color": "Gnome",
1910
+ "brand": "Dulux"
1911
+ },
1912
+ {
1913
+ "color": "Gold Foil",
1914
+ "brand": "Dulux"
1915
+ },
1916
+ {
1917
+ "color": "Golden Delicious",
1918
+ "brand": "Dulux"
1919
+ },
1920
+ {
1921
+ "color": "Golden Grain",
1922
+ "brand": "Dulux"
1923
+ },
1924
+ {
1925
+ "color": "Golden Rod",
1926
+ "brand": "Dulux"
1927
+ },
1928
+ {
1929
+ "color": "Golf Green",
1930
+ "brand": "Dulux"
1931
+ },
1932
+ {
1933
+ "color": "Good Samaritan",
1934
+ "brand": "Dulux"
1935
+ },
1936
+ {
1937
+ "color": "Grass Blade",
1938
+ "brand": "Dulux"
1939
+ },
1940
+ {
1941
+ "color": "Great Serpent",
1942
+ "brand": "Dulux"
1943
+ },
1944
+ {
1945
+ "color": "Great Void",
1946
+ "brand": "Dulux"
1947
+ },
1948
+ {
1949
+ "color": "Green Beret",
1950
+ "brand": "Dulux"
1951
+ },
1952
+ {
1953
+ "color": "Green Fingers",
1954
+ "brand": "Dulux"
1955
+ },
1956
+ {
1957
+ "color": "Green Fog",
1958
+ "brand": "Dulux"
1959
+ },
1960
+ {
1961
+ "color": "Green Garter",
1962
+ "brand": "Dulux"
1963
+ },
1964
+ {
1965
+ "color": "Green Glint",
1966
+ "brand": "Dulux"
1967
+ },
1968
+ {
1969
+ "color": "Green Illude",
1970
+ "brand": "Dulux"
1971
+ },
1972
+ {
1973
+ "color": "Green Jelly",
1974
+ "brand": "Dulux"
1975
+ },
1976
+ {
1977
+ "color": "Green Pantina",
1978
+ "brand": "Dulux"
1979
+ },
1980
+ {
1981
+ "color": "Green Room",
1982
+ "brand": "Dulux"
1983
+ },
1984
+ {
1985
+ "color": "Green Veil",
1986
+ "brand": "Dulux"
1987
+ },
1988
+ {
1989
+ "color": "Green Weed",
1990
+ "brand": "Dulux"
1991
+ },
1992
+ {
1993
+ "color": "Greenette",
1994
+ "brand": "Dulux"
1995
+ },
1996
+ {
1997
+ "color": "Greenland Ice",
1998
+ "brand": "Dulux"
1999
+ },
2000
+ {
2001
+ "color": "Gulf Weed",
2002
+ "brand": "Dulux"
2003
+ },
2004
+ {
2005
+ "color": "Hailstorm",
2006
+ "brand": "Dulux"
2007
+ },
2008
+ {
2009
+ "color": "Hammock",
2010
+ "brand": "Dulux"
2011
+ },
2012
+ {
2013
+ "color": "Handmade Linen",
2014
+ "brand": "Dulux"
2015
+ },
2016
+ {
2017
+ "color": "Harbour Blue",
2018
+ "brand": "Dulux"
2019
+ },
2020
+ {
2021
+ "color": "Harem Silk",
2022
+ "brand": "Dulux"
2023
+ },
2024
+ {
2025
+ "color": "Harmonious",
2026
+ "brand": "Dulux"
2027
+ },
2028
+ {
2029
+ "color": "Harvest Gold",
2030
+ "brand": "Dulux"
2031
+ },
2032
+ {
2033
+ "color": "Havana",
2034
+ "brand": "Dulux"
2035
+ },
2036
+ {
2037
+ "color": "Heaven Sent",
2038
+ "brand": "Dulux"
2039
+ },
2040
+ {
2041
+ "color": "Heavenly",
2042
+ "brand": "Dulux"
2043
+ },
2044
+ {
2045
+ "color": "Heifer",
2046
+ "brand": "Dulux"
2047
+ },
2048
+ {
2049
+ "color": "Herbalist",
2050
+ "brand": "Dulux"
2051
+ },
2052
+ {
2053
+ "color": "Hidden Depths",
2054
+ "brand": "Dulux"
2055
+ },
2056
+ {
2057
+ "color": "Hidden Mask",
2058
+ "brand": "Dulux"
2059
+ },
2060
+ {
2061
+ "color": "Highland Green",
2062
+ "brand": "Dulux"
2063
+ },
2064
+ {
2065
+ "color": "Highlander",
2066
+ "brand": "Dulux"
2067
+ },
2068
+ {
2069
+ "color": "Hindsight",
2070
+ "brand": "Dulux"
2071
+ },
2072
+ {
2073
+ "color": "Hokey Pokey",
2074
+ "brand": "Dulux"
2075
+ },
2076
+ {
2077
+ "color": "Holy Fern",
2078
+ "brand": "Dulux"
2079
+ },
2080
+ {
2081
+ "color": "Hot Embers",
2082
+ "brand": "Dulux"
2083
+ },
2084
+ {
2085
+ "color": "Hot Flamingo",
2086
+ "brand": "Dulux"
2087
+ },
2088
+ {
2089
+ "color": "Hot Ginger",
2090
+ "brand": "Dulux"
2091
+ },
2092
+ {
2093
+ "color": "Hydroport",
2094
+ "brand": "Dulux"
2095
+ },
2096
+ {
2097
+ "color": "Ice Cap Green",
2098
+ "brand": "Dulux"
2099
+ },
2100
+ {
2101
+ "color": "Ice Mist",
2102
+ "brand": "Dulux"
2103
+ },
2104
+ {
2105
+ "color": "Ice Pack",
2106
+ "brand": "Dulux"
2107
+ },
2108
+ {
2109
+ "color": "Iced Vovo",
2110
+ "brand": "Dulux"
2111
+ },
2112
+ {
2113
+ "color": "Iced Watermelon",
2114
+ "brand": "Dulux"
2115
+ },
2116
+ {
2117
+ "color": "Identity",
2118
+ "brand": "Dulux"
2119
+ },
2120
+ {
2121
+ "color": "Illusion Blue",
2122
+ "brand": "Dulux"
2123
+ },
2124
+ {
2125
+ "color": "Imagery",
2126
+ "brand": "Dulux"
2127
+ },
2128
+ {
2129
+ "color": "Imaginary Mauve",
2130
+ "brand": "Dulux"
2131
+ },
2132
+ {
2133
+ "color": "Immortal",
2134
+ "brand": "Dulux"
2135
+ },
2136
+ {
2137
+ "color": "Indian Clay",
2138
+ "brand": "Dulux"
2139
+ },
2140
+ {
2141
+ "color": "Indigo Night",
2142
+ "brand": "Dulux"
2143
+ },
2144
+ {
2145
+ "color": "Inkjet",
2146
+ "brand": "Dulux"
2147
+ },
2148
+ {
2149
+ "color": "Inky Storm",
2150
+ "brand": "Dulux"
2151
+ },
2152
+ {
2153
+ "color": "Instant",
2154
+ "brand": "Dulux"
2155
+ },
2156
+ {
2157
+ "color": "Irish Hedge",
2158
+ "brand": "Dulux"
2159
+ },
2160
+ {
2161
+ "color": "Island Sea",
2162
+ "brand": "Dulux"
2163
+ },
2164
+ {
2165
+ "color": "Isolation",
2166
+ "brand": "Dulux"
2167
+ },
2168
+ {
2169
+ "color": "Italian Clay",
2170
+ "brand": "Dulux"
2171
+ },
2172
+ {
2173
+ "color": "Jacaranda Jazz",
2174
+ "brand": "Dulux"
2175
+ },
2176
+ {
2177
+ "color": "Jetski Race",
2178
+ "brand": "Dulux"
2179
+ },
2180
+ {
2181
+ "color": "Jewel",
2182
+ "brand": "Dulux"
2183
+ },
2184
+ {
2185
+ "color": "Jubilation",
2186
+ "brand": "Dulux"
2187
+ },
2188
+ {
2189
+ "color": "Juggernaut",
2190
+ "brand": "Dulux"
2191
+ },
2192
+ {
2193
+ "color": "Juicy Lime",
2194
+ "brand": "Dulux"
2195
+ },
2196
+ {
2197
+ "color": "Jules",
2198
+ "brand": "Dulux"
2199
+ },
2200
+ {
2201
+ "color": "July",
2202
+ "brand": "Dulux"
2203
+ },
2204
+ {
2205
+ "color": "June",
2206
+ "brand": "Dulux"
2207
+ },
2208
+ {
2209
+ "color": "Jungle Adventure",
2210
+ "brand": "Dulux"
2211
+ },
2212
+ {
2213
+ "color": "Jungle Cloak",
2214
+ "brand": "Dulux"
2215
+ },
2216
+ {
2217
+ "color": "Jurassic Park",
2218
+ "brand": "Dulux"
2219
+ },
2220
+ {
2221
+ "color": "Kimberley Tree",
2222
+ "brand": "Dulux"
2223
+ },
2224
+ {
2225
+ "color": "Kimono",
2226
+ "brand": "Dulux"
2227
+ },
2228
+ {
2229
+ "color": "Kinder",
2230
+ "brand": "Dulux"
2231
+ },
2232
+ {
2233
+ "color": "Kindness",
2234
+ "brand": "Dulux"
2235
+ },
2236
+ {
2237
+ "color": "Kiri Mist",
2238
+ "brand": "Dulux"
2239
+ },
2240
+ {
2241
+ "color": "Kowloon",
2242
+ "brand": "Dulux"
2243
+ },
2244
+ {
2245
+ "color": "Lacey",
2246
+ "brand": "Dulux"
2247
+ },
2248
+ {
2249
+ "color": "Lacustral",
2250
+ "brand": "Dulux"
2251
+ },
2252
+ {
2253
+ "color": "Lady Fern",
2254
+ "brand": "Dulux"
2255
+ },
2256
+ {
2257
+ "color": "Lagoon Blue",
2258
+ "brand": "Dulux"
2259
+ },
2260
+ {
2261
+ "color": "Lagoona Teal",
2262
+ "brand": "Dulux"
2263
+ },
2264
+ {
2265
+ "color": "Laird",
2266
+ "brand": "Dulux"
2267
+ },
2268
+ {
2269
+ "color": "Lama",
2270
+ "brand": "Dulux"
2271
+ },
2272
+ {
2273
+ "color": "Lampoon",
2274
+ "brand": "Dulux"
2275
+ },
2276
+ {
2277
+ "color": "Latin Charm",
2278
+ "brand": "Dulux"
2279
+ },
2280
+ {
2281
+ "color": "Laughing Jack",
2282
+ "brand": "Dulux"
2283
+ },
2284
+ {
2285
+ "color": "Lavender Blush",
2286
+ "brand": "Dulux"
2287
+ },
2288
+ {
2289
+ "color": "Lavender Elan",
2290
+ "brand": "Dulux"
2291
+ },
2292
+ {
2293
+ "color": "Lavender Mosaic",
2294
+ "brand": "Dulux"
2295
+ },
2296
+ {
2297
+ "color": "Lavender Scent",
2298
+ "brand": "Dulux"
2299
+ },
2300
+ {
2301
+ "color": "Legendary Lilac",
2302
+ "brand": "Dulux"
2303
+ },
2304
+ {
2305
+ "color": "Licorice Green",
2306
+ "brand": "Dulux"
2307
+ },
2308
+ {
2309
+ "color": "Liddell",
2310
+ "brand": "Dulux"
2311
+ },
2312
+ {
2313
+ "color": "Light Leather",
2314
+ "brand": "Dulux"
2315
+ },
2316
+ {
2317
+ "color": "Lily Legs",
2318
+ "brand": "Dulux"
2319
+ },
2320
+ {
2321
+ "color": "Lime Parfait",
2322
+ "brand": "Dulux"
2323
+ },
2324
+ {
2325
+ "color": "Limpid Light",
2326
+ "brand": "Dulux"
2327
+ },
2328
+ {
2329
+ "color": "Little League",
2330
+ "brand": "Dulux"
2331
+ },
2332
+ {
2333
+ "color": "Little Mermaid",
2334
+ "brand": "Dulux"
2335
+ },
2336
+ {
2337
+ "color": "Loch Blue",
2338
+ "brand": "Dulux"
2339
+ },
2340
+ {
2341
+ "color": "Lorna",
2342
+ "brand": "Dulux"
2343
+ },
2344
+ {
2345
+ "color": "Lucidity",
2346
+ "brand": "Dulux"
2347
+ },
2348
+ {
2349
+ "color": "Luscious Lobster",
2350
+ "brand": "Dulux"
2351
+ },
2352
+ {
2353
+ "color": "Lush Mauve",
2354
+ "brand": "Dulux"
2355
+ },
2356
+ {
2357
+ "color": "Lusty Lavender",
2358
+ "brand": "Dulux"
2359
+ },
2360
+ {
2361
+ "color": "Magenta Twilight",
2362
+ "brand": "Dulux"
2363
+ },
2364
+ {
2365
+ "color": "Magnesia Bay",
2366
+ "brand": "Dulux"
2367
+ },
2368
+ {
2369
+ "color": "Magnitude",
2370
+ "brand": "Dulux"
2371
+ },
2372
+ {
2373
+ "color": "Malt Shake",
2374
+ "brand": "Dulux"
2375
+ },
2376
+ {
2377
+ "color": "Mamala Bay",
2378
+ "brand": "Dulux"
2379
+ },
2380
+ {
2381
+ "color": "Manila",
2382
+ "brand": "Dulux"
2383
+ },
2384
+ {
2385
+ "color": "Marlin Green",
2386
+ "brand": "Dulux"
2387
+ },
2388
+ {
2389
+ "color": "Marrakesh Red",
2390
+ "brand": "Dulux"
2391
+ },
2392
+ {
2393
+ "color": "Marvellous",
2394
+ "brand": "Dulux"
2395
+ },
2396
+ {
2397
+ "color": "Mask",
2398
+ "brand": "Dulux"
2399
+ },
2400
+ {
2401
+ "color": "Maud",
2402
+ "brand": "Dulux"
2403
+ },
2404
+ {
2405
+ "color": "Mauve Jazz",
2406
+ "brand": "Dulux"
2407
+ },
2408
+ {
2409
+ "color": "Mauve Mole",
2410
+ "brand": "Dulux"
2411
+ },
2412
+ {
2413
+ "color": "Mauve Stone",
2414
+ "brand": "Dulux"
2415
+ },
2416
+ {
2417
+ "color": "Medicine Man",
2418
+ "brand": "Dulux"
2419
+ },
2420
+ {
2421
+ "color": "Mediterranean Cove",
2422
+ "brand": "Dulux"
2423
+ },
2424
+ {
2425
+ "color": "Melon Baby",
2426
+ "brand": "Dulux"
2427
+ },
2428
+ {
2429
+ "color": "Melon Balls",
2430
+ "brand": "Dulux"
2431
+ },
2432
+ {
2433
+ "color": "Melon Green",
2434
+ "brand": "Dulux"
2435
+ },
2436
+ {
2437
+ "color": "Melon Twist",
2438
+ "brand": "Dulux"
2439
+ },
2440
+ {
2441
+ "color": "Melt Ice",
2442
+ "brand": "Dulux"
2443
+ },
2444
+ {
2445
+ "color": "Meltwater",
2446
+ "brand": "Dulux"
2447
+ },
2448
+ {
2449
+ "color": "Memorize",
2450
+ "brand": "Dulux"
2451
+ },
2452
+ {
2453
+ "color": "Merlin's Choice",
2454
+ "brand": "Dulux"
2455
+ },
2456
+ {
2457
+ "color": "Merlin's Cloak",
2458
+ "brand": "Dulux"
2459
+ },
2460
+ {
2461
+ "color": "Miami Spice",
2462
+ "brand": "Dulux"
2463
+ },
2464
+ {
2465
+ "color": "Mildura",
2466
+ "brand": "Dulux"
2467
+ },
2468
+ {
2469
+ "color": "Milky Aquamarine",
2470
+ "brand": "Dulux"
2471
+ },
2472
+ {
2473
+ "color": "Mint",
2474
+ "brand": "Dulux"
2475
+ },
2476
+ {
2477
+ "color": "Mintos",
2478
+ "brand": "Dulux"
2479
+ },
2480
+ {
2481
+ "color": "Mirage",
2482
+ "brand": "Dulux"
2483
+ },
2484
+ {
2485
+ "color": "Misty Blue",
2486
+ "brand": "Dulux"
2487
+ },
2488
+ {
2489
+ "color": "Misty Grape",
2490
+ "brand": "Dulux"
2491
+ },
2492
+ {
2493
+ "color": "Misty Moss",
2494
+ "brand": "Dulux"
2495
+ },
2496
+ {
2497
+ "color": "Mizu",
2498
+ "brand": "Dulux"
2499
+ },
2500
+ {
2501
+ "color": "Modal Blue",
2502
+ "brand": "Dulux"
2503
+ },
2504
+ {
2505
+ "color": "Moired Satin",
2506
+ "brand": "Dulux"
2507
+ },
2508
+ {
2509
+ "color": "Monastery Mantle",
2510
+ "brand": "Dulux"
2511
+ },
2512
+ {
2513
+ "color": "Moneybanks",
2514
+ "brand": "Dulux"
2515
+ },
2516
+ {
2517
+ "color": "Mont Blanc",
2518
+ "brand": "Dulux"
2519
+ },
2520
+ {
2521
+ "color": "Morality",
2522
+ "brand": "Dulux"
2523
+ },
2524
+ {
2525
+ "color": "Morass",
2526
+ "brand": "Dulux"
2527
+ },
2528
+ {
2529
+ "color": "Moroccan Dusk",
2530
+ "brand": "Dulux"
2531
+ },
2532
+ {
2533
+ "color": "Mosque",
2534
+ "brand": "Dulux"
2535
+ },
2536
+ {
2537
+ "color": "Mouse Trap",
2538
+ "brand": "Dulux"
2539
+ },
2540
+ {
2541
+ "color": "Mud House",
2542
+ "brand": "Dulux"
2543
+ },
2544
+ {
2545
+ "color": "Mud-Dell",
2546
+ "brand": "Dulux"
2547
+ },
2548
+ {
2549
+ "color": "Murdoch",
2550
+ "brand": "Dulux"
2551
+ },
2552
+ {
2553
+ "color": "Murex",
2554
+ "brand": "Dulux"
2555
+ },
2556
+ {
2557
+ "color": "Mustard Magic",
2558
+ "brand": "Dulux"
2559
+ },
2560
+ {
2561
+ "color": "Muted Mauve",
2562
+ "brand": "Dulux"
2563
+ },
2564
+ {
2565
+ "color": "Mysteria",
2566
+ "brand": "Dulux"
2567
+ },
2568
+ {
2569
+ "color": "Natural Youth",
2570
+ "brand": "Dulux"
2571
+ },
2572
+ {
2573
+ "color": "Nature's Delight",
2574
+ "brand": "Dulux"
2575
+ },
2576
+ {
2577
+ "color": "Navigator",
2578
+ "brand": "Dulux"
2579
+ },
2580
+ {
2581
+ "color": "Nero's Green",
2582
+ "brand": "Dulux"
2583
+ },
2584
+ {
2585
+ "color": "Net Worker",
2586
+ "brand": "Dulux"
2587
+ },
2588
+ {
2589
+ "color": "Neverland",
2590
+ "brand": "Dulux"
2591
+ },
2592
+ {
2593
+ "color": "New Love",
2594
+ "brand": "Dulux"
2595
+ },
2596
+ {
2597
+ "color": "Niche",
2598
+ "brand": "Dulux"
2599
+ },
2600
+ {
2601
+ "color": "Night Bloom",
2602
+ "brand": "Dulux"
2603
+ },
2604
+ {
2605
+ "color": "Night Romance",
2606
+ "brand": "Dulux"
2607
+ },
2608
+ {
2609
+ "color": "Night Rose",
2610
+ "brand": "Dulux"
2611
+ },
2612
+ {
2613
+ "color": "Nightshade",
2614
+ "brand": "Dulux"
2615
+ },
2616
+ {
2617
+ "color": "Noble Tone",
2618
+ "brand": "Dulux"
2619
+ },
2620
+ {
2621
+ "color": "Nocturnal Flight",
2622
+ "brand": "Dulux"
2623
+ },
2624
+ {
2625
+ "color": "Nominee",
2626
+ "brand": "Dulux"
2627
+ },
2628
+ {
2629
+ "color": "Norfolk Sky",
2630
+ "brand": "Dulux"
2631
+ },
2632
+ {
2633
+ "color": "Nursery",
2634
+ "brand": "Dulux"
2635
+ },
2636
+ {
2637
+ "color": "Oath",
2638
+ "brand": "Dulux"
2639
+ },
2640
+ {
2641
+ "color": "Ocean Mirage",
2642
+ "brand": "Dulux"
2643
+ },
2644
+ {
2645
+ "color": "Ocean Trapeze",
2646
+ "brand": "Dulux"
2647
+ },
2648
+ {
2649
+ "color": "Ogen Melon",
2650
+ "brand": "Dulux"
2651
+ },
2652
+ {
2653
+ "color": "Old Ruin",
2654
+ "brand": "Dulux"
2655
+ },
2656
+ {
2657
+ "color": "Olive Paste",
2658
+ "brand": "Dulux"
2659
+ },
2660
+ {
2661
+ "color": "Opera",
2662
+ "brand": "Dulux"
2663
+ },
2664
+ {
2665
+ "color": "Orange Drop",
2666
+ "brand": "Dulux"
2667
+ },
2668
+ {
2669
+ "color": "Orange Wood",
2670
+ "brand": "Dulux"
2671
+ },
2672
+ {
2673
+ "color": "Orchid Haze",
2674
+ "brand": "Dulux"
2675
+ },
2676
+ {
2677
+ "color": "Oriental Blush",
2678
+ "brand": "Dulux"
2679
+ },
2680
+ {
2681
+ "color": "Oriental Spice",
2682
+ "brand": "Dulux"
2683
+ },
2684
+ {
2685
+ "color": "Overtake",
2686
+ "brand": "Dulux"
2687
+ },
2688
+ {
2689
+ "color": "Ozone",
2690
+ "brand": "Dulux"
2691
+ },
2692
+ {
2693
+ "color": "Pa Red",
2694
+ "brand": "Dulux"
2695
+ },
2696
+ {
2697
+ "color": "Pacific Queen",
2698
+ "brand": "Dulux"
2699
+ },
2700
+ {
2701
+ "color": "Painted Bark",
2702
+ "brand": "Dulux"
2703
+ },
2704
+ {
2705
+ "color": "Painted Clay",
2706
+ "brand": "Dulux"
2707
+ },
2708
+ {
2709
+ "color": "Pale Corn",
2710
+ "brand": "Dulux"
2711
+ },
2712
+ {
2713
+ "color": "Pale Mustard",
2714
+ "brand": "Dulux"
2715
+ },
2716
+ {
2717
+ "color": "Pale Sage",
2718
+ "brand": "Dulux"
2719
+ },
2720
+ {
2721
+ "color": "Pancake Mix",
2722
+ "brand": "Dulux"
2723
+ },
2724
+ {
2725
+ "color": "Pandanus",
2726
+ "brand": "Dulux"
2727
+ },
2728
+ {
2729
+ "color": "Panorama",
2730
+ "brand": "Dulux"
2731
+ },
2732
+ {
2733
+ "color": "Paper Brown",
2734
+ "brand": "Dulux"
2735
+ },
2736
+ {
2737
+ "color": "Paris Creek",
2738
+ "brand": "Dulux"
2739
+ },
2740
+ {
2741
+ "color": "Passive Royal",
2742
+ "brand": "Dulux"
2743
+ },
2744
+ {
2745
+ "color": "Pastry",
2746
+ "brand": "Dulux"
2747
+ },
2748
+ {
2749
+ "color": "Patrice",
2750
+ "brand": "Dulux"
2751
+ },
2752
+ {
2753
+ "color": "Pauper",
2754
+ "brand": "Dulux"
2755
+ },
2756
+ {
2757
+ "color": "Paving Stone",
2758
+ "brand": "Dulux"
2759
+ },
2760
+ {
2761
+ "color": "Paw Paw",
2762
+ "brand": "Dulux"
2763
+ },
2764
+ {
2765
+ "color": "Peace",
2766
+ "brand": "Dulux"
2767
+ },
2768
+ {
2769
+ "color": "Peach Fizz",
2770
+ "brand": "Dulux"
2771
+ },
2772
+ {
2773
+ "color": "Peach Melba",
2774
+ "brand": "Dulux"
2775
+ },
2776
+ {
2777
+ "color": "Peahen",
2778
+ "brand": "Dulux"
2779
+ },
2780
+ {
2781
+ "color": "Pearly Blue",
2782
+ "brand": "Dulux"
2783
+ },
2784
+ {
2785
+ "color": "Peaslake",
2786
+ "brand": "Dulux"
2787
+ },
2788
+ {
2789
+ "color": "Pedigree",
2790
+ "brand": "Dulux"
2791
+ },
2792
+ {
2793
+ "color": "Pelican Pink",
2794
+ "brand": "Dulux"
2795
+ },
2796
+ {
2797
+ "color": "Penna",
2798
+ "brand": "Dulux"
2799
+ },
2800
+ {
2801
+ "color": "Pentagon",
2802
+ "brand": "Dulux"
2803
+ },
2804
+ {
2805
+ "color": "Pentalon",
2806
+ "brand": "Dulux"
2807
+ },
2808
+ {
2809
+ "color": "Peppercorn Rent",
2810
+ "brand": "Dulux"
2811
+ },
2812
+ {
2813
+ "color": "Peppermint Twist",
2814
+ "brand": "Dulux"
2815
+ },
2816
+ {
2817
+ "color": "Perfect Pink",
2818
+ "brand": "Dulux"
2819
+ },
2820
+ {
2821
+ "color": "Perserverance",
2822
+ "brand": "Dulux"
2823
+ },
2824
+ {
2825
+ "color": "Persian Pink",
2826
+ "brand": "Dulux"
2827
+ },
2828
+ {
2829
+ "color": "Petal Purple",
2830
+ "brand": "Dulux"
2831
+ },
2832
+ {
2833
+ "color": "Petula",
2834
+ "brand": "Dulux"
2835
+ },
2836
+ {
2837
+ "color": "Pharaoh's Seas",
2838
+ "brand": "Dulux"
2839
+ },
2840
+ {
2841
+ "color": "Pheasant Brown",
2842
+ "brand": "Dulux"
2843
+ },
2844
+ {
2845
+ "color": "Piccolo",
2846
+ "brand": "Dulux"
2847
+ },
2848
+ {
2849
+ "color": "Pickled",
2850
+ "brand": "Dulux"
2851
+ },
2852
+ {
2853
+ "color": "Picturebook Green",
2854
+ "brand": "Dulux"
2855
+ },
2856
+ {
2857
+ "color": "Piglet",
2858
+ "brand": "Dulux"
2859
+ },
2860
+ {
2861
+ "color": "Pinch Purple",
2862
+ "brand": "Dulux"
2863
+ },
2864
+ {
2865
+ "color": "Pincushion",
2866
+ "brand": "Dulux"
2867
+ },
2868
+ {
2869
+ "color": "Pink Dream",
2870
+ "brand": "Dulux"
2871
+ },
2872
+ {
2873
+ "color": "Pink Fire",
2874
+ "brand": "Dulux"
2875
+ },
2876
+ {
2877
+ "color": "Pink Marble",
2878
+ "brand": "Dulux"
2879
+ },
2880
+ {
2881
+ "color": "Pink Pieris",
2882
+ "brand": "Dulux"
2883
+ },
2884
+ {
2885
+ "color": "Pink Polar",
2886
+ "brand": "Dulux"
2887
+ },
2888
+ {
2889
+ "color": "Pink Power",
2890
+ "brand": "Dulux"
2891
+ },
2892
+ {
2893
+ "color": "Pink Tutu",
2894
+ "brand": "Dulux"
2895
+ },
2896
+ {
2897
+ "color": "Pirate's Haven",
2898
+ "brand": "Dulux"
2899
+ },
2900
+ {
2901
+ "color": "Pirate's Trinket",
2902
+ "brand": "Dulux"
2903
+ },
2904
+ {
2905
+ "color": "Pitapat",
2906
+ "brand": "Dulux"
2907
+ },
2908
+ {
2909
+ "color": "Pleasure",
2910
+ "brand": "Dulux"
2911
+ },
2912
+ {
2913
+ "color": "Pluto",
2914
+ "brand": "Dulux"
2915
+ },
2916
+ {
2917
+ "color": "Poised Peach",
2918
+ "brand": "Dulux"
2919
+ },
2920
+ {
2921
+ "color": "Polly",
2922
+ "brand": "Dulux"
2923
+ },
2924
+ {
2925
+ "color": "Pony Express",
2926
+ "brand": "Dulux"
2927
+ },
2928
+ {
2929
+ "color": "Poppy Leaf",
2930
+ "brand": "Dulux"
2931
+ },
2932
+ {
2933
+ "color": "Porcelain Crab",
2934
+ "brand": "Dulux"
2935
+ },
2936
+ {
2937
+ "color": "Potash",
2938
+ "brand": "Dulux"
2939
+ },
2940
+ {
2941
+ "color": "Powder Puff Pink",
2942
+ "brand": "Dulux"
2943
+ },
2944
+ {
2945
+ "color": "Prancer",
2946
+ "brand": "Dulux"
2947
+ },
2948
+ {
2949
+ "color": "Pre-Raphaelite",
2950
+ "brand": "Dulux"
2951
+ },
2952
+ {
2953
+ "color": "Precious Pink",
2954
+ "brand": "Dulux"
2955
+ },
2956
+ {
2957
+ "color": "Prediction",
2958
+ "brand": "Dulux"
2959
+ },
2960
+ {
2961
+ "color": "Prefect",
2962
+ "brand": "Dulux"
2963
+ },
2964
+ {
2965
+ "color": "Pretty Lady",
2966
+ "brand": "Dulux"
2967
+ },
2968
+ {
2969
+ "color": "Pretty Pale",
2970
+ "brand": "Dulux"
2971
+ },
2972
+ {
2973
+ "color": "Primrose",
2974
+ "brand": "Dulux"
2975
+ },
2976
+ {
2977
+ "color": "Primula",
2978
+ "brand": "Dulux"
2979
+ },
2980
+ {
2981
+ "color": "Prince",
2982
+ "brand": "Dulux"
2983
+ },
2984
+ {
2985
+ "color": "Prince Royal",
2986
+ "brand": "Dulux"
2987
+ },
2988
+ {
2989
+ "color": "Prompt",
2990
+ "brand": "Dulux"
2991
+ },
2992
+ {
2993
+ "color": "Prophetic Purple",
2994
+ "brand": "Dulux"
2995
+ },
2996
+ {
2997
+ "color": "Puppeteers",
2998
+ "brand": "Dulux"
2999
+ },
3000
+ {
3001
+ "color": "Pure Apple",
3002
+ "brand": "Dulux"
3003
+ },
3004
+ {
3005
+ "color": "Pure Zeal",
3006
+ "brand": "Dulux"
3007
+ },
3008
+ {
3009
+ "color": "Purple Berry",
3010
+ "brand": "Dulux"
3011
+ },
3012
+ {
3013
+ "color": "Purple Kasbah",
3014
+ "brand": "Dulux"
3015
+ },
3016
+ {
3017
+ "color": "Purple Mystery",
3018
+ "brand": "Dulux"
3019
+ },
3020
+ {
3021
+ "color": "Putty Pearl",
3022
+ "brand": "Dulux"
3023
+ },
3024
+ {
3025
+ "color": "Quarry Quartz",
3026
+ "brand": "Dulux"
3027
+ },
3028
+ {
3029
+ "color": "Quaver",
3030
+ "brand": "Dulux"
3031
+ },
3032
+ {
3033
+ "color": "Quiet Bay",
3034
+ "brand": "Dulux"
3035
+ },
3036
+ {
3037
+ "color": "Raccoon Tail",
3038
+ "brand": "Dulux"
3039
+ },
3040
+ {
3041
+ "color": "Ramjet",
3042
+ "brand": "Dulux"
3043
+ },
3044
+ {
3045
+ "color": "Rapt",
3046
+ "brand": "Dulux"
3047
+ },
3048
+ {
3049
+ "color": "Raspberry Ice",
3050
+ "brand": "Dulux"
3051
+ },
3052
+ {
3053
+ "color": "Raspberry Ripple",
3054
+ "brand": "Dulux"
3055
+ },
3056
+ {
3057
+ "color": "Raw Umber",
3058
+ "brand": "Dulux"
3059
+ },
3060
+ {
3061
+ "color": "Razee",
3062
+ "brand": "Dulux"
3063
+ },
3064
+ {
3065
+ "color": "Ready Lawn",
3066
+ "brand": "Dulux"
3067
+ },
3068
+ {
3069
+ "color": "Real Brown",
3070
+ "brand": "Dulux"
3071
+ },
3072
+ {
3073
+ "color": "Rebounder",
3074
+ "brand": "Dulux"
3075
+ },
3076
+ {
3077
+ "color": "Receding Night",
3078
+ "brand": "Dulux"
3079
+ },
3080
+ {
3081
+ "color": "Recycled",
3082
+ "brand": "Dulux"
3083
+ },
3084
+ {
3085
+ "color": "Red Gravel",
3086
+ "brand": "Dulux"
3087
+ },
3088
+ {
3089
+ "color": "Red Rock",
3090
+ "brand": "Dulux"
3091
+ },
3092
+ {
3093
+ "color": "Red Stop",
3094
+ "brand": "Dulux"
3095
+ },
3096
+ {
3097
+ "color": "Red Terra",
3098
+ "brand": "Dulux"
3099
+ },
3100
+ {
3101
+ "color": "Reef Resort",
3102
+ "brand": "Dulux"
3103
+ },
3104
+ {
3105
+ "color": "Revival",
3106
+ "brand": "Dulux"
3107
+ },
3108
+ {
3109
+ "color": "Rhythm",
3110
+ "brand": "Dulux"
3111
+ },
3112
+ {
3113
+ "color": "Rich Biscuit",
3114
+ "brand": "Dulux"
3115
+ },
3116
+ {
3117
+ "color": "Rich Loam",
3118
+ "brand": "Dulux"
3119
+ },
3120
+ {
3121
+ "color": "Ridge Light",
3122
+ "brand": "Dulux"
3123
+ },
3124
+ {
3125
+ "color": "Robinhood",
3126
+ "brand": "Dulux"
3127
+ },
3128
+ {
3129
+ "color": "Rockabilly",
3130
+ "brand": "Dulux"
3131
+ },
3132
+ {
3133
+ "color": "Rollercoaster",
3134
+ "brand": "Dulux"
3135
+ },
3136
+ {
3137
+ "color": "Rosetta",
3138
+ "brand": "Dulux"
3139
+ },
3140
+ {
3141
+ "color": "Roulette",
3142
+ "brand": "Dulux"
3143
+ },
3144
+ {
3145
+ "color": "Rowntree",
3146
+ "brand": "Dulux"
3147
+ },
3148
+ {
3149
+ "color": "Royal Consort",
3150
+ "brand": "Dulux"
3151
+ },
3152
+ {
3153
+ "color": "Royal Curtsy",
3154
+ "brand": "Dulux"
3155
+ },
3156
+ {
3157
+ "color": "Royal Decree",
3158
+ "brand": "Dulux"
3159
+ },
3160
+ {
3161
+ "color": "Ruby Red",
3162
+ "brand": "Dulux"
3163
+ },
3164
+ {
3165
+ "color": "Rusted Crimson",
3166
+ "brand": "Dulux"
3167
+ },
3168
+ {
3169
+ "color": "Safflower",
3170
+ "brand": "Dulux"
3171
+ },
3172
+ {
3173
+ "color": "Sainsbury",
3174
+ "brand": "Dulux"
3175
+ },
3176
+ {
3177
+ "color": "Salmon Pate",
3178
+ "brand": "Dulux"
3179
+ },
3180
+ {
3181
+ "color": "Salt Blue",
3182
+ "brand": "Dulux"
3183
+ },
3184
+ {
3185
+ "color": "Salt Spray",
3186
+ "brand": "Dulux"
3187
+ },
3188
+ {
3189
+ "color": "Sandbank",
3190
+ "brand": "Dulux"
3191
+ },
3192
+ {
3193
+ "color": "Sandgrass Green",
3194
+ "brand": "Dulux"
3195
+ },
3196
+ {
3197
+ "color": "Sandpaper",
3198
+ "brand": "Dulux"
3199
+ },
3200
+ {
3201
+ "color": "Sanskrit",
3202
+ "brand": "Dulux"
3203
+ },
3204
+ {
3205
+ "color": "Sapless Green",
3206
+ "brand": "Dulux"
3207
+ },
3208
+ {
3209
+ "color": "Satin Soil",
3210
+ "brand": "Dulux"
3211
+ },
3212
+ {
3213
+ "color": "Savile Row",
3214
+ "brand": "Dulux"
3215
+ },
3216
+ {
3217
+ "color": "Saxon",
3218
+ "brand": "Dulux"
3219
+ },
3220
+ {
3221
+ "color": "Sea Angel",
3222
+ "brand": "Dulux"
3223
+ },
3224
+ {
3225
+ "color": "Sea Cave",
3226
+ "brand": "Dulux"
3227
+ },
3228
+ {
3229
+ "color": "Sea Current",
3230
+ "brand": "Dulux"
3231
+ },
3232
+ {
3233
+ "color": "Sea Garden",
3234
+ "brand": "Dulux"
3235
+ },
3236
+ {
3237
+ "color": "Sea Mark",
3238
+ "brand": "Dulux"
3239
+ },
3240
+ {
3241
+ "color": "Sea Swimmer",
3242
+ "brand": "Dulux"
3243
+ },
3244
+ {
3245
+ "color": "Sea Wonder",
3246
+ "brand": "Dulux"
3247
+ },
3248
+ {
3249
+ "color": "Seaborne",
3250
+ "brand": "Dulux"
3251
+ },
3252
+ {
3253
+ "color": "Seachange",
3254
+ "brand": "Dulux"
3255
+ },
3256
+ {
3257
+ "color": "Seduction",
3258
+ "brand": "Dulux"
3259
+ },
3260
+ {
3261
+ "color": "Sequesta",
3262
+ "brand": "Dulux"
3263
+ },
3264
+ {
3265
+ "color": "Shaded Fuchsia",
3266
+ "brand": "Dulux"
3267
+ },
3268
+ {
3269
+ "color": "Shadow Blue",
3270
+ "brand": "Dulux"
3271
+ },
3272
+ {
3273
+ "color": "Shallow Sea",
3274
+ "brand": "Dulux"
3275
+ },
3276
+ {
3277
+ "color": "Ship's Officer",
3278
+ "brand": "Dulux"
3279
+ },
3280
+ {
3281
+ "color": "Shipwreck",
3282
+ "brand": "Dulux"
3283
+ },
3284
+ {
3285
+ "color": "Shire",
3286
+ "brand": "Dulux"
3287
+ },
3288
+ {
3289
+ "color": "Shot-Put",
3290
+ "brand": "Dulux"
3291
+ },
3292
+ {
3293
+ "color": "Show Business",
3294
+ "brand": "Dulux"
3295
+ },
3296
+ {
3297
+ "color": "Shylock",
3298
+ "brand": "Dulux"
3299
+ },
3300
+ {
3301
+ "color": "Silent Sage",
3302
+ "brand": "Dulux"
3303
+ },
3304
+ {
3305
+ "color": "Silver Drop",
3306
+ "brand": "Dulux"
3307
+ },
3308
+ {
3309
+ "color": "Silverfish",
3310
+ "brand": "Dulux"
3311
+ },
3312
+ {
3313
+ "color": "Silverton",
3314
+ "brand": "Dulux"
3315
+ },
3316
+ {
3317
+ "color": "Simply Delicious",
3318
+ "brand": "Dulux"
3319
+ },
3320
+ {
3321
+ "color": "Sky Bus",
3322
+ "brand": "Dulux"
3323
+ },
3324
+ {
3325
+ "color": "Skyway",
3326
+ "brand": "Dulux"
3327
+ },
3328
+ {
3329
+ "color": "Sleep",
3330
+ "brand": "Dulux"
3331
+ },
3332
+ {
3333
+ "color": "Slipper Satin",
3334
+ "brand": "Dulux"
3335
+ },
3336
+ {
3337
+ "color": "Smoked Amethyst",
3338
+ "brand": "Dulux"
3339
+ },
3340
+ {
3341
+ "color": "Smoked Flamingo",
3342
+ "brand": "Dulux"
3343
+ },
3344
+ {
3345
+ "color": "Smoky Sunrise",
3346
+ "brand": "Dulux"
3347
+ },
3348
+ {
3349
+ "color": "Snoop",
3350
+ "brand": "Dulux"
3351
+ },
3352
+ {
3353
+ "color": "Snowpink",
3354
+ "brand": "Dulux"
3355
+ },
3356
+ {
3357
+ "color": "Soft Amber",
3358
+ "brand": "Dulux"
3359
+ },
3360
+ {
3361
+ "color": "Soft Bark",
3362
+ "brand": "Dulux"
3363
+ },
3364
+ {
3365
+ "color": "Soft Blush",
3366
+ "brand": "Dulux"
3367
+ },
3368
+ {
3369
+ "color": "Soft Chamois",
3370
+ "brand": "Dulux"
3371
+ },
3372
+ {
3373
+ "color": "Soft Savvy",
3374
+ "brand": "Dulux"
3375
+ },
3376
+ {
3377
+ "color": "Soft Suede",
3378
+ "brand": "Dulux"
3379
+ },
3380
+ {
3381
+ "color": "Softsun",
3382
+ "brand": "Dulux"
3383
+ },
3384
+ {
3385
+ "color": "Solid Empire",
3386
+ "brand": "Dulux"
3387
+ },
3388
+ {
3389
+ "color": "Soothsayer",
3390
+ "brand": "Dulux"
3391
+ },
3392
+ {
3393
+ "color": "Soya",
3394
+ "brand": "Dulux"
3395
+ },
3396
+ {
3397
+ "color": "Spaceman",
3398
+ "brand": "Dulux"
3399
+ },
3400
+ {
3401
+ "color": "Spanish Style",
3402
+ "brand": "Dulux"
3403
+ },
3404
+ {
3405
+ "color": "Sparkling Cove",
3406
+ "brand": "Dulux"
3407
+ },
3408
+ {
3409
+ "color": "Spatial Spirit",
3410
+ "brand": "Dulux"
3411
+ },
3412
+ {
3413
+ "color": "Species",
3414
+ "brand": "Dulux"
3415
+ },
3416
+ {
3417
+ "color": "Speedwell",
3418
+ "brand": "Dulux"
3419
+ },
3420
+ {
3421
+ "color": "Spice Of Life",
3422
+ "brand": "Dulux"
3423
+ },
3424
+ {
3425
+ "color": "Spinning Blue",
3426
+ "brand": "Dulux"
3427
+ },
3428
+ {
3429
+ "color": "Splash Palace",
3430
+ "brand": "Dulux"
3431
+ },
3432
+ {
3433
+ "color": "Splinter",
3434
+ "brand": "Dulux"
3435
+ },
3436
+ {
3437
+ "color": "Spring Fever",
3438
+ "brand": "Dulux"
3439
+ },
3440
+ {
3441
+ "color": "Stamina",
3442
+ "brand": "Dulux"
3443
+ },
3444
+ {
3445
+ "color": "Star Gate",
3446
+ "brand": "Dulux"
3447
+ },
3448
+ {
3449
+ "color": "Starlight Blue",
3450
+ "brand": "Dulux"
3451
+ },
3452
+ {
3453
+ "color": "Stellar Mist",
3454
+ "brand": "Dulux"
3455
+ },
3456
+ {
3457
+ "color": "Storm Break",
3458
+ "brand": "Dulux"
3459
+ },
3460
+ {
3461
+ "color": "Stowaway",
3462
+ "brand": "Dulux"
3463
+ },
3464
+ {
3465
+ "color": "Stream",
3466
+ "brand": "Dulux"
3467
+ },
3468
+ {
3469
+ "color": "String",
3470
+ "brand": "Dulux"
3471
+ },
3472
+ {
3473
+ "color": "Strong Sage",
3474
+ "brand": "Dulux"
3475
+ },
3476
+ {
3477
+ "color": "Sultan's Silk",
3478
+ "brand": "Dulux"
3479
+ },
3480
+ {
3481
+ "color": "Sultry Spell",
3482
+ "brand": "Dulux"
3483
+ },
3484
+ {
3485
+ "color": "Summer Air",
3486
+ "brand": "Dulux"
3487
+ },
3488
+ {
3489
+ "color": "Summit",
3490
+ "brand": "Dulux"
3491
+ },
3492
+ {
3493
+ "color": "Sunbound",
3494
+ "brand": "Dulux"
3495
+ },
3496
+ {
3497
+ "color": "Supernatural",
3498
+ "brand": "Dulux"
3499
+ },
3500
+ {
3501
+ "color": "Surf Rider",
3502
+ "brand": "Dulux"
3503
+ },
3504
+ {
3505
+ "color": "Sutherland",
3506
+ "brand": "Dulux"
3507
+ },
3508
+ {
3509
+ "color": "Swampy",
3510
+ "brand": "Dulux"
3511
+ },
3512
+ {
3513
+ "color": "Swedish Clover",
3514
+ "brand": "Dulux"
3515
+ },
3516
+ {
3517
+ "color": "Sweet Violet",
3518
+ "brand": "Dulux"
3519
+ },
3520
+ {
3521
+ "color": "Swift",
3522
+ "brand": "Dulux"
3523
+ },
3524
+ {
3525
+ "color": "Swollen Sky",
3526
+ "brand": "Dulux"
3527
+ },
3528
+ {
3529
+ "color": "Tactile",
3530
+ "brand": "Dulux"
3531
+ },
3532
+ {
3533
+ "color": "Tall Ships",
3534
+ "brand": "Dulux"
3535
+ },
3536
+ {
3537
+ "color": "Tamboon",
3538
+ "brand": "Dulux"
3539
+ },
3540
+ {
3541
+ "color": "Tambua Bay",
3542
+ "brand": "Dulux"
3543
+ },
3544
+ {
3545
+ "color": "Tan Wagon",
3546
+ "brand": "Dulux"
3547
+ },
3548
+ {
3549
+ "color": "Tango",
3550
+ "brand": "Dulux"
3551
+ },
3552
+ {
3553
+ "color": "Tapestry Beige",
3554
+ "brand": "Dulux"
3555
+ },
3556
+ {
3557
+ "color": "Tardis",
3558
+ "brand": "Dulux"
3559
+ },
3560
+ {
3561
+ "color": "Tarzan Green",
3562
+ "brand": "Dulux"
3563
+ },
3564
+ {
3565
+ "color": "Tassel Taupe",
3566
+ "brand": "Dulux"
3567
+ },
3568
+ {
3569
+ "color": "Taupe Night",
3570
+ "brand": "Dulux"
3571
+ },
3572
+ {
3573
+ "color": "Teal Essence",
3574
+ "brand": "Dulux"
3575
+ },
3576
+ {
3577
+ "color": "Template",
3578
+ "brand": "Dulux"
3579
+ },
3580
+ {
3581
+ "color": "Temptress",
3582
+ "brand": "Dulux"
3583
+ },
3584
+ {
3585
+ "color": "The Bluff",
3586
+ "brand": "Dulux"
3587
+ },
3588
+ {
3589
+ "color": "Thicket",
3590
+ "brand": "Dulux"
3591
+ },
3592
+ {
3593
+ "color": "Thredbo",
3594
+ "brand": "Dulux"
3595
+ },
3596
+ {
3597
+ "color": "Thunderbirds",
3598
+ "brand": "Dulux"
3599
+ },
3600
+ {
3601
+ "color": "Thunderbolt Blue",
3602
+ "brand": "Dulux"
3603
+ },
3604
+ {
3605
+ "color": "Tidal Green",
3606
+ "brand": "Dulux"
3607
+ },
3608
+ {
3609
+ "color": "Tidal Thicket",
3610
+ "brand": "Dulux"
3611
+ },
3612
+ {
3613
+ "color": "Tingle",
3614
+ "brand": "Dulux"
3615
+ },
3616
+ {
3617
+ "color": "Tint Of Earth",
3618
+ "brand": "Dulux"
3619
+ },
3620
+ {
3621
+ "color": "Toad",
3622
+ "brand": "Dulux"
3623
+ },
3624
+ {
3625
+ "color": "Tort",
3626
+ "brand": "Dulux"
3627
+ },
3628
+ {
3629
+ "color": "Trail Blazer",
3630
+ "brand": "Dulux"
3631
+ },
3632
+ {
3633
+ "color": "Tranquil Green",
3634
+ "brand": "Dulux"
3635
+ },
3636
+ {
3637
+ "color": "Tree Frog Green",
3638
+ "brand": "Dulux"
3639
+ },
3640
+ {
3641
+ "color": "Tree Palm",
3642
+ "brand": "Dulux"
3643
+ },
3644
+ {
3645
+ "color": "Triassic",
3646
+ "brand": "Dulux"
3647
+ },
3648
+ {
3649
+ "color": "Tropic Canary",
3650
+ "brand": "Dulux"
3651
+ },
3652
+ {
3653
+ "color": "Tropical Light",
3654
+ "brand": "Dulux"
3655
+ },
3656
+ {
3657
+ "color": "Tropical Moss",
3658
+ "brand": "Dulux"
3659
+ },
3660
+ {
3661
+ "color": "True Blue",
3662
+ "brand": "Dulux"
3663
+ },
3664
+ {
3665
+ "color": "Tsar",
3666
+ "brand": "Dulux"
3667
+ },
3668
+ {
3669
+ "color": "Tuft",
3670
+ "brand": "Dulux"
3671
+ },
3672
+ {
3673
+ "color": "Turkish Aqua",
3674
+ "brand": "Dulux"
3675
+ },
3676
+ {
3677
+ "color": "Turkish Stone",
3678
+ "brand": "Dulux"
3679
+ },
3680
+ {
3681
+ "color": "Turmeric",
3682
+ "brand": "Dulux"
3683
+ },
3684
+ {
3685
+ "color": "Twisted Time",
3686
+ "brand": "Dulux"
3687
+ },
3688
+ {
3689
+ "color": "Tyrol",
3690
+ "brand": "Dulux"
3691
+ },
3692
+ {
3693
+ "color": "Uncharted",
3694
+ "brand": "Dulux"
3695
+ },
3696
+ {
3697
+ "color": "Uniform",
3698
+ "brand": "Dulux"
3699
+ },
3700
+ {
3701
+ "color": "Vandamint",
3702
+ "brand": "Dulux"
3703
+ },
3704
+ {
3705
+ "color": "Vanilla Frost",
3706
+ "brand": "Dulux"
3707
+ },
3708
+ {
3709
+ "color": "Vegetarian",
3710
+ "brand": "Dulux"
3711
+ },
3712
+ {
3713
+ "color": "Veiled Delight",
3714
+ "brand": "Dulux"
3715
+ },
3716
+ {
3717
+ "color": "Veiled Violet",
3718
+ "brand": "Dulux"
3719
+ },
3720
+ {
3721
+ "color": "Velvet Cape",
3722
+ "brand": "Dulux"
3723
+ },
3724
+ {
3725
+ "color": "Velvet Ears",
3726
+ "brand": "Dulux"
3727
+ },
3728
+ {
3729
+ "color": "Venetian Pink",
3730
+ "brand": "Dulux"
3731
+ },
3732
+ {
3733
+ "color": "Venus Mist",
3734
+ "brand": "Dulux"
3735
+ },
3736
+ {
3737
+ "color": "Viameter",
3738
+ "brand": "Dulux"
3739
+ },
3740
+ {
3741
+ "color": "Vibrant Vine",
3742
+ "brand": "Dulux"
3743
+ },
3744
+ {
3745
+ "color": "Vibrant Vision",
3746
+ "brand": "Dulux"
3747
+ },
3748
+ {
3749
+ "color": "Victoriana",
3750
+ "brand": "Dulux"
3751
+ },
3752
+ {
3753
+ "color": "Violet Dawn",
3754
+ "brand": "Dulux"
3755
+ },
3756
+ {
3757
+ "color": "Virtuous",
3758
+ "brand": "Dulux"
3759
+ },
3760
+ {
3761
+ "color": "Voltage",
3762
+ "brand": "Dulux"
3763
+ },
3764
+ {
3765
+ "color": "Wallflower",
3766
+ "brand": "Dulux"
3767
+ },
3768
+ {
3769
+ "color": "Warm Ash",
3770
+ "brand": "Dulux"
3771
+ },
3772
+ {
3773
+ "color": "Warm Leather",
3774
+ "brand": "Dulux"
3775
+ },
3776
+ {
3777
+ "color": "Warm Neutral",
3778
+ "brand": "Dulux"
3779
+ },
3780
+ {
3781
+ "color": "Warm Spice",
3782
+ "brand": "Dulux"
3783
+ },
3784
+ {
3785
+ "color": "Water Music",
3786
+ "brand": "Dulux"
3787
+ },
3788
+ {
3789
+ "color": "Water Raceway",
3790
+ "brand": "Dulux"
3791
+ },
3792
+ {
3793
+ "color": "Water Scrub",
3794
+ "brand": "Dulux"
3795
+ },
3796
+ {
3797
+ "color": "Water Wheel",
3798
+ "brand": "Dulux"
3799
+ },
3800
+ {
3801
+ "color": "Waterway",
3802
+ "brand": "Dulux"
3803
+ },
3804
+ {
3805
+ "color": "Wave",
3806
+ "brand": "Dulux"
3807
+ },
3808
+ {
3809
+ "color": "Waza Bear",
3810
+ "brand": "Dulux"
3811
+ },
3812
+ {
3813
+ "color": "Wellington",
3814
+ "brand": "Dulux"
3815
+ },
3816
+ {
3817
+ "color": "Wentworth",
3818
+ "brand": "Dulux"
3819
+ },
3820
+ {
3821
+ "color": "Wiggle",
3822
+ "brand": "Dulux"
3823
+ },
3824
+ {
3825
+ "color": "Will",
3826
+ "brand": "Dulux"
3827
+ },
3828
+ {
3829
+ "color": "Wisley Pink",
3830
+ "brand": "Dulux"
3831
+ },
3832
+ {
3833
+ "color": "Wisteria-Wise",
3834
+ "brand": "Dulux"
3835
+ },
3836
+ {
3837
+ "color": "Witch Wood",
3838
+ "brand": "Dulux"
3839
+ },
3840
+ {
3841
+ "color": "Witches Cauldron",
3842
+ "brand": "Dulux"
3843
+ },
3844
+ {
3845
+ "color": "Woad",
3846
+ "brand": "Dulux"
3847
+ },
3848
+ {
3849
+ "color": "Wolf's Bane",
3850
+ "brand": "Dulux"
3851
+ },
3852
+ {
3853
+ "color": "Woodland Brown",
3854
+ "brand": "Dulux"
3855
+ },
3856
+ {
3857
+ "color": "Woohringa",
3858
+ "brand": "Dulux"
3859
+ },
3860
+ {
3861
+ "color": "Yellowstone",
3862
+ "brand": "Dulux"
3863
+ },
3864
+ {
3865
+ "color": "Young Salmon",
3866
+ "brand": "Dulux"
3867
+ },
3868
+ {
3869
+ "color": "Yucca",
3870
+ "brand": "Dulux"
3871
+ },
3872
+ {
3873
+ "color": "Arsenic",
3874
+ "brand": "Farrow Ball"
3875
+ },
3876
+ {
3877
+ "color": "Babouche",
3878
+ "brand": "Farrow Ball"
3879
+ },
3880
+ {
3881
+ "color": "Blue Gray",
3882
+ "brand": "Farrow Ball"
3883
+ },
3884
+ {
3885
+ "color": "Calke Green",
3886
+ "brand": "Farrow Ball"
3887
+ },
3888
+ {
3889
+ "color": "Cat's Paw",
3890
+ "brand": "Farrow Ball"
3891
+ },
3892
+ {
3893
+ "color": "Charlotte's Locks",
3894
+ "brand": "Farrow Ball"
3895
+ },
3896
+ {
3897
+ "color": "Cook's Blue",
3898
+ "brand": "Farrow Ball"
3899
+ },
3900
+ {
3901
+ "color": "Cord",
3902
+ "brand": "Farrow Ball"
3903
+ },
3904
+ {
3905
+ "color": "Dead Salmon",
3906
+ "brand": "Farrow Ball"
3907
+ },
3908
+ {
3909
+ "color": "Dimpse",
3910
+ "brand": "Farrow Ball"
3911
+ },
3912
+ {
3913
+ "color": "Dix Blue",
3914
+ "brand": "Farrow Ball"
3915
+ },
3916
+ {
3917
+ "color": "Down Pipe",
3918
+ "brand": "Farrow Ball"
3919
+ },
3920
+ {
3921
+ "color": "Drawing Room Blue",
3922
+ "brand": "Farrow Ball"
3923
+ },
3924
+ {
3925
+ "color": "Fawn",
3926
+ "brand": "Farrow Ball"
3927
+ },
3928
+ {
3929
+ "color": "Green Smoke",
3930
+ "brand": "Farrow Ball"
3931
+ },
3932
+ {
3933
+ "color": "Hay",
3934
+ "brand": "Farrow Ball"
3935
+ },
3936
+ {
3937
+ "color": "Incarnadine",
3938
+ "brand": "Farrow Ball"
3939
+ },
3940
+ {
3941
+ "color": "James White",
3942
+ "brand": "Farrow Ball"
3943
+ },
3944
+ {
3945
+ "color": "Lamp Room Gray",
3946
+ "brand": "Farrow Ball"
3947
+ },
3948
+ {
3949
+ "color": "Lime White",
3950
+ "brand": "Farrow Ball"
3951
+ },
3952
+ {
3953
+ "color": "Manor House Gray",
3954
+ "brand": "Farrow Ball"
3955
+ },
3956
+ {
3957
+ "color": "Matchstick",
3958
+ "brand": "Farrow Ball"
3959
+ },
3960
+ {
3961
+ "color": "Mole's Breath",
3962
+ "brand": "Farrow Ball"
3963
+ },
3964
+ {
3965
+ "color": "Off-White",
3966
+ "brand": "Farrow Ball"
3967
+ },
3968
+ {
3969
+ "color": "Oval Room Blue",
3970
+ "brand": "Farrow Ball"
3971
+ },
3972
+ {
3973
+ "color": "Picture Gallery Red",
3974
+ "brand": "Farrow Ball"
3975
+ },
3976
+ {
3977
+ "color": "Print Room Yellow",
3978
+ "brand": "Farrow Ball"
3979
+ },
3980
+ {
3981
+ "color": "Purbeck Stone",
3982
+ "brand": "Farrow Ball"
3983
+ },
3984
+ {
3985
+ "color": "Ringwold Ground",
3986
+ "brand": "Farrow Ball"
3987
+ },
3988
+ {
3989
+ "color": "Skylight",
3990
+ "brand": "Farrow Ball"
3991
+ },
3992
+ {
3993
+ "color": "Strong White",
3994
+ "brand": "Farrow Ball"
3995
+ },
3996
+ {
3997
+ "color": "Sudbury Yellow",
3998
+ "brand": "Farrow Ball"
3999
+ },
4000
+ {
4001
+ "color": "Vert De Terre",
4002
+ "brand": "Farrow Ball"
4003
+ }
4004
+ ]
4005
+ }