Sherwin Williams in JavaScript
Our previous post on using a custom n-gram filter to look at colors proved to be pretty popular. I thought it would be fun to explore colors a little bit more. This time we're going to be using CSS variables to bring Sherwin Williams paint colors to the web. Sherwin Williams makes some great paint and has some great color names that really bring out the character in each color Wow that's a bit dramatic. I admit it's possible that I did too many home rennovation projects in 2020.
In this post we're going to show you how we built a JavaScript library, published it on npm, and then used it to write this post. And of course we'll give you an interactive demo (or you can click here to skip to it).
If you just want to checkout the library, here's a link to the github repository. Or run:
A Quick Look at Sherwin Williams
Sherwin Williams has long been a leader in the American paint industry. Boasting over 1500 colors in the catalog, it looks like their poised to continue thier streak of dominance.
Little did I know how impressive of a business Sherwin Williams is. Take a look at their
returns against the S&P 500 since 1981. SHW
has returned at 65,0590%. Granted it's over the
past 40 years, but still! Incredible returns. That's up there with the likes of Apple and Microsoft.
Pretty impressive.
Our dataset
Lucky for us, Sherwin Williams publishes the names, hexes, and some other data about all of the paint colors they sell. You can find a link to download the data files here. It's pretty cool, they have lots of different file formats that you can use—everything from JPGS, PhotoShop, PDFs, Excel files. You name it. For our use case we're going to be using plain-old Excel.
From this data file we'll create a data file called colors.json
. To do this, I copied the color name and the corresponding hex from the Excel file into a file called "colors.txt". Next I ran a little awk
script to generate some JSON. This generated a JSON row for each color. So I had to go back in and edit the resulting file by hand to turn it into a list--maybe not sexy but it works!
colors.txt
The awk script to generate our near-there colors.json
The final colors.json.
CSS Variables
Next up is to convert these colors into CSS variables because who doesn't want to have thousands of carefully named colors at their fingertips. CSS variables aren't particularly new but they're still not widly used. It's a pretty cool concept that you can read more about in this post on the Mozilla Blog.
Defining a color variable in CSS is pretty easy. In the :root
psuedo-class of your main stylesheet,
simply define variable names like this:
It's that simple. We can now use the "Billard Green" color like this:
The rest is rinse and repeat to get the rest of the *gulp* 1500 unique Sherwin Williams colors.
Usage in JavaScript
Using these variables in a JavaScript project is pretty easy. If you're using any flavor modern JS transpliler/framework/starter kit (parcel, create react app, babel, webpack, snowpack, etc.) then you should be able to just import your CSS variables at the top of the index file in your application. It should look something like this:
However it's not super fun to have to maintain or copy and paste a big list of variables. So to make matters easier I've published the Sherwin Williams colors to npm. It has no dependencies and clocks in at 129 kB. Hopefully this meets your selection criteria. We'll have a follow up post on making your own npm package for CSS.
Now it's even easier to import our Sherwin Williams colors:
Let's take them for a test spin. I put together a Swatch
component to test things out.
Billiard Green
Alexandrite
Bagel
Blue Nile
Looking good! Now let's take a look at the rest of the Sherwin Williams color palette.
Full Demo
Ok so now let's expand this to the rest of the color palette. I'm going to export an array of
all of the colors in the dataset. It'll be exposed as the default export from the sherwin-williams
package. Here we'll loop over the array and generate a Swatch
for each color. We should end up
with a big grid with a sample of every color.
To make it easier to read the color names, I've added a little snippet to determine whether to display the color's name in black or white.
In our demo code we're also going to include a text box that let's you filter based on color name--there are
a lot of colors (over 40 containing the word "gold" alone). To do this we're going to use the TextField
component from material-ui
along with the useState
React hook.
This code is live! Try it out.
var(--mulberry-silk)
var(--chelsea-mauve)
var(--cabbage-rose)
var(--rose-brocade)
var(--deepest-mauve)
var(--toile-red)
var(--decorous-amber)
var(--cajun-red)
var(--eastlake-gold)
var(--wickerwork)
var(--crewel-tan)
var(--empire-gold)
var(--majolica-green)
var(--sheraton-sage)
var(--gallery-green)
var(--billiard-green)
var(--calico)
var(--teal-stencil)
var(--festoon-aqua)
var(--peacock-plume)
var(--queen-anne-lilac)
var(--patchwork-plum)
var(--pewter-tankard)
var(--curio-gray)
var(--rosedust)
var(--rachel-pink)
var(--aristocrat-peach)
var(--caen-stone)
var(--acanthus)
var(--colonial-yellow)
var(--dutch-tile-blue)
var(--needlepoint-navy)
var(--rembrandt-ruby)
var(--roycroft-rose)
var(--indian-white)
var(--buckram-binding)
var(--morris-room-grey)
var(--library-pewter)
var(--portrait-tone)
var(--roycroft-adobe)
var(--dard-hunter-green)
var(--ruskin-room-green)
var(--peristyle-brass)
var(--hubbard-squash)
var(--antiquarian-brown)
var(--white-hyacinth)
var(--studio-blue-green)
var(--bunglehouse-blue)
var(--silver-gray)
var(--classic-light-buff)
var(--classic-ivory)
var(--pearl-gray)
var(--porcelain)
var(--twilight-gray)
var(--light-french-gray)
var(--classic-sand)
var(--chinese-red)
var(--jazz-age-coral)
var(--frostwork)
var(--alexandrite)
var(--salon-rose)
var(--studio-mauve)
var(--blue-sky)
var(--blue-peacock)
var(--vogue-green)
var(--cascade-green)
var(--belvedere-cream)
var(--copen-blue)
var(--rose-tan)
var(--pink-shadow)
var(--orchid)
var(--deep-maroon)
var(--chartreuse)
var(--radiant-lilac)
var(--holiday-turquoise)
var(--appleblossom)
var(--classic-french-gray)
var(--sunbeam-yellow)
var(--pinky-beige)
var(--pink-flamingo)
var(--skyline-steel)
var(--venetian-yellow)
var(--icy-lemonade)
var(--pineapple-cream)
var(--merlot)
var(--rockweed)
var(--charcoal-blue)
var(--mineral-gray)
var(--rookwood-dark-red)
var(--rookwood-red)
var(--rookwood-terra-cotta)
var(--renwick-rose-beige)
var(--renwick-beige)
var(--rookwood-brown)
var(--rookwood-medium-brown)
var(--rookwood-dark-brown)
var(--rookwood-shutter-green)
var(--rookwood-sash-green)
var(--rookwood-blue-green)
var(--rookwood-jade)
var(--downing-straw)
var(--rookwood-antique-gold)
var(--renwick-olive)
var(--rookwood-dark-green)
var(--rookwood-amber)
var(--renwick-heather)
var(--downing-slate)
var(--downing-earth)
var(--downing-stone)
var(--downing-sand)
var(--rookwood-clay)
var(--renwick-golden-oak)
var(--colonial-revival-green-stone)
var(--colonial-revival-stone)
var(--colonial-revival-tan)
var(--classical-white)
var(--classical-gold)
var(--colonial-revival-gray)
var(--roycroft-vellum)
var(--birdseye-maple)
var(--craftsman-brown)
var(--quartersawn-oak)
var(--aurora-brown)
var(--polished-mahogany)
var(--roycroft-copper-red)
var(--hammered-silver)
var(--weathered-shingle)
var(--roycroft-suede)
var(--roycroft-brass)
var(--roycroft-mist-gray)
var(--bunglehouse-gray)
var(--roycroft-bronze-green)
var(--roycroft-bottle-green)
var(--roycroft-pewter)
var(--westchester-gray)
var(--chelsea-gray)
var(--sage-green-light)
var(--new-colonial-yellow)
var(--caribbean-coral)
var(--sycamore-tan)
var(--fairfax-brown)
var(--peace-yellow)
var(--harvest-gold)
var(--beige)
var(--sage)
var(--avocado)
var(--powder-blue)
var(--classical-yellow)
var(--snowfall)
var(--grayish)
var(--essential-gray)
var(--proper-gray)
var(--mink)
var(--folkstone)
var(--black-bean)
var(--smart-white)
var(--individual-white)
var(--imagine)
var(--flexible-gray)
var(--chinchilla)
var(--browse-brown)
var(--bitter-chocolate)
var(--vaguely-mauve)
var(--chaise-mauve)
var(--intuitive)
var(--enigma)
var(--poetry-plum)
var(--marooned)
var(--dreamy-white)
var(--breathless)
var(--insightful-rose)
var(--dressy-rose)
var(--socialite)
var(--river-rouge)
var(--cordovan)
var(--cultured-pearl)
var(--white-truffle)
var(--artistic-taupe)
var(--glamour)
var(--dutch-cocoa)
var(--bateau-brown)
var(--arresting-auburn)
var(--gauzy-white)
var(--angora)
var(--temperate-taupe)
var(--truly-taupe)
var(--poised-taupe)
var(--less-brown)
var(--otter)
var(--hush-white)
var(--unfussy-beige)
var(--doeskin)
var(--emerging-taupe)
var(--swing-brown)
var(--hot-cocoa)
var(--terra-brun)
var(--gorgeous-white)
var(--abalone-shell)
var(--sashay-sand)
var(--sandbank)
var(--reddened-earth)
var(--canyon-clay)
var(--fiery-brown)
var(--polite-white)
var(--malted-milk)
var(--likeable-sand)
var(--interface-tan)
var(--moroccan-brown)
var(--tanbark)
var(--rugged-brown)
var(--nice-white)
var(--reticence)
var(--bona-fide-beige)
var(--sand-trap)
var(--mocha)
var(--brevity-brown)
var(--french-roast)
var(--heron-plume)
var(--popular-gray)
var(--versatile-gray)
var(--perfect-greige)
var(--spalding-gray)
var(--garret-gray)
var(--turkish-coffee)
var(--everyday-white)
var(--realist-beige)
var(--diverse-beige)
var(--utterly-beige)
var(--down-home)
var(--cobble-brown)
var(--sable)
var(--modest-white)
var(--simplify-beige)
var(--sand-dune)
var(--trusty-tan)
var(--nuthatch)
var(--grounded)
var(--java)
var(--reliable-white)
var(--lightweight-beige)
var(--familiar-beige)
var(--sensational-sand)
var(--toasty)
var(--jute-brown)
var(--sturdy-brown)
var(--pacer-white)
var(--sand-dollar)
var(--practical-beige)
var(--sands-of-time)
var(--portabello)
var(--tea-chest)
var(--kaffee)
var(--divine-white)
var(--kilim-beige)
var(--nomadic-desert)
var(--latte)
var(--hopsack)
var(--steady-brown)
var(--coconut-husk)
var(--biscuit)
var(--interactive-cream)
var(--bagel)
var(--totally-tan)
var(--tatami-tan)
var(--smokey-topaz)
var(--leather-bound)
var(--antique-white)
var(--believable-buff)
var(--whole-wheat)
var(--camelback)
var(--baguette)
var(--cardboard)
var(--craft-paper)
var(--navajo-white)
var(--ivoire)
var(--blonde)
var(--restrained-gold)
var(--mannered-gold)
var(--chamois)
var(--relic-bronze)
var(--muslin)
var(--netsuke)
var(--ecru)
var(--harmonic-tan)
var(--burlap)
var(--artifact)
var(--mossy-gold)
var(--moderate-white)
var(--softer-tan)
var(--macadamia)
var(--basket-beige)
var(--dapper-tan)
var(--thatch-brown)
var(--umber)
var(--panda-white)
var(--wool-skein)
var(--relaxed-khaki)
var(--universal-khaki)
var(--quiver-tan)
var(--superior-bronze)
var(--protege-bronze)
var(--nacre)
var(--rice-grain)
var(--ramie)
var(--favorite-tan)
var(--sawdust)
var(--high-tea)
var(--best-bronze)
var(--nonchalant-white)
var(--ancient-marble)
var(--grassland)
var(--svelte-sage)
var(--connected-gray)
var(--eclipse)
var(--garden-gate)
var(--moderne-white)
var(--sedate-gray)
var(--techno-gray)
var(--chatroom)
var(--hardware)
var(--cocoon)
var(--andiron)
var(--sagey)
var(--liveable-green)
var(--softened-green)
var(--clary-sage)
var(--artichoke)
var(--oakmoss)
var(--secret-garden)
var(--ethereal-white)
var(--conservative-gray)
var(--austere-gray)
var(--escape-gray)
var(--dried-thyme)
var(--rosemary)
var(--shadegrown)
var(--opaline)
var(--filmy-green)
var(--contented)
var(--coastal-plain)
var(--privilege-green)
var(--basil)
var(--rock-garden)
var(--frosty-white)
var(--aloof-gray)
var(--sensible-hue)
var(--rare-gray)
var(--link-gray)
var(--thunderous)
var(--cast-iron)
var(--spare-white)
var(--sea-salt)
var(--comfort-gray)
var(--oyster-bay)
var(--retreat)
var(--pewter-green)
var(--ripe-olive)
var(--window-pane)
var(--rainwashed)
var(--quietude)
var(--halcyon-green)
var(--underseas)
var(--rocky-river)
var(--jasper)
var(--topsail)
var(--tradewind)
var(--rain)
var(--interesting-aqua)
var(--moody-blue)
var(--riverway)
var(--still-water)
var(--mountain-air)
var(--sleepy-blue)
var(--languid-blue)
var(--meditative)
var(--refuge)
var(--tempe-star)
var(--rainstorm)
var(--rock-candy)
var(--misty)
var(--samovar-silver)
var(--uncertain-gray)
var(--foggy-day)
var(--grays-harbor)
var(--dark-night)
var(--icicle)
var(--upward)
var(--windy-blue)
var(--aleutian)
var(--bracing-blue)
var(--distance)
var(--naval)
var(--quicksilver)
var(--north-star)
var(--krypton)
var(--jubilee)
var(--storm-cloud)
var(--granite-peak)
var(--outerspace)
var(--ice-cube)
var(--olympus-white)
var(--lazy-gray)
var(--morning-fog)
var(--serious-gray)
var(--gibraltar)
var(--tricorn-black)
var(--spatial-white)
var(--unique-gray)
var(--swanky-gray)
var(--mysterious-mauve)
var(--exclusive-plum)
var(--midnight)
var(--quixotic-plum)
var(--sensitive-tint)
var(--veiled-violet)
var(--beguiling-mauve)
var(--soulmate)
var(--expressive-plum)
var(--plum-brown)
var(--destiny)
var(--fashionable-gray)
var(--mystical-shade)
var(--special-gray)
var(--cloak-gray)
var(--black-swan)
var(--wallflower)
var(--mauve-finery)
var(--thistle)
var(--plum-dandy)
var(--grape-harvest)
var(--mature-grape)
var(--rosebud)
var(--delightful)
var(--rose)
var(--moss-rose)
var(--berry-bush)
var(--fabulous-grape)
var(--demure)
var(--fading-rose)
var(--rose-embroidery)
var(--concerto)
var(--aged-wine)
var(--burgundy)
var(--innocence)
var(--rose-colored)
var(--pressed-flower)
var(--rambling-rose)
var(--cordial)
var(--fine-wine)
var(--charming-pink)
var(--lotus-flower)
var(--memorable-rose)
var(--redbud)
var(--kirsch-red)
var(--luxurious-red)
var(--rosy-outlook)
var(--gracious-rose)
var(--resounding-rose)
var(--reddish)
var(--bravado-red)
var(--red-bay)
var(--intimate-white)
var(--romance)
var(--mellow-coral)
var(--constant-coral)
var(--henna-shade)
var(--bold-brick)
var(--fireweed)
var(--faint-coral)
var(--quaint-peche)
var(--smoky-salmon)
var(--coral-island)
var(--foxy)
var(--flower-pot)
var(--fired-brick)
var(--nearly-peach)
var(--spun-sugar)
var(--warming-peach)
var(--persimmon)
var(--baked-clay)
var(--red-cent)
var(--spicy-hue)
var(--alluring-white)
var(--peach-fuzz)
var(--sumptuous-peach)
var(--fame-orange)
var(--chrysanthemum)
var(--reynard)
var(--pennywise)
var(--intricate-ivory)
var(--sweet-orange)
var(--soft-apricot)
var(--chivalry-copper)
var(--armagnac)
var(--truepenny)
var(--copper-mountain)
var(--choice-cream)
var(--creamery)
var(--sociable)
var(--folksy-gold)
var(--autumnal)
var(--tigereye)
var(--gingery)
var(--eggwhite)
var(--cachet-cream)
var(--ambitious-amber)
var(--viva-gold)
var(--bakelite-gold)
var(--tassel)
var(--saucy-gold)
var(--vanillin)
var(--inviting-ivory)
var(--harvester)
var(--torchlight)
var(--honeycomb)
var(--gold-coast)
var(--butterscotch)
var(--crisp-linen)
var(--jersey-cream)
var(--humble-gold)
var(--anjou-pear)
var(--ceremonial-gold)
var(--golden-rule)
var(--cut-the-mustard)
var(--dover-white)
var(--napery)
var(--compatible-cream)
var(--golden-fleece)
var(--butternut)
var(--bosc-pear)
var(--gallant-gold)
var(--vital-yellow)
var(--convivial-yellow)
var(--sequin)
var(--alchemy)
var(--different-gold)
var(--nankeen)
var(--sconce-gold)
var(--chamomile)
var(--lucent-yellow)
var(--independent-gold)
var(--antiquity)
var(--escapade-gold)
var(--grandiose)
var(--fervent-brass)
var(--ionic-ivory)
var(--ancestral-gold)
var(--wheat-grass)
var(--edgy-gold)
var(--brassy)
var(--bengal-grass)
var(--eminent-bronze)
var(--restoration-ivory)
var(--rice-paddy)
var(--hearts-of-palm)
var(--sassy-green)
var(--tupelo-tree)
var(--rural-green)
var(--saguaro)
var(--queen-annes-lace)
var(--celery)
var(--shagreen)
var(--ryegrass)
var(--tansy-green)
var(--relentless-olive)
var(--basque-green)
var(--sprout)
var(--honeydew)
var(--baize-green)
var(--great-green)
var(--leapfrog)
var(--garden-spot)
var(--inverness)
var(--spinach-white)
var(--gratifying-green)
var(--bonsai-tint)
var(--haven)
var(--dill)
var(--greenfield)
var(--courtyard)
var(--white-mint)
var(--supreme-green)
var(--relish)
var(--lounge-green)
var(--garden-grove)
var(--arugula)
var(--evergreens)
var(--topiary-tint)
var(--easy-green)
var(--nurture-green)
var(--inland)
var(--cilantro)
var(--shamrock)
var(--fleeting-green)
var(--slow-green)
var(--kind-green)
var(--restful)
var(--jadite)
var(--kale-green)
var(--isle-of-pines)
var(--green-trance)
var(--breaktime)
var(--aloe)
var(--spearmint)
var(--grandview)
var(--kendal-green)
var(--hunt-club)
var(--waterscape)
var(--hazel)
var(--composed)
var(--surf-green)
var(--raging-sea)
var(--country-squire)
var(--glimmer)
var(--tidewater)
var(--watery)
var(--drizzle)
var(--lagoon)
var(--green-bay)
var(--cape-verde)
var(--meander-blue)
var(--raindrop)
var(--reflecting-pool)
var(--cloudburst)
var(--grand-canal)
var(--really-teal)
var(--open-air)
var(--jetstream)
var(--ebbtide)
var(--lakeshore)
var(--great-falls)
var(--oceanside)
var(--blue-horizon)
var(--byte-blue)
var(--stream)
var(--open-seas)
var(--manitou-blue)
var(--loch-blue)
var(--bosporus)
var(--sky-high)
var(--atmospheric)
var(--vast-sky)
var(--resolute-blue)
var(--secure-blue)
var(--georgian-bay)
var(--loyal-blue)
var(--snowdrop)
var(--balmy)
var(--take-five)
var(--respite)
var(--leisure-blue)
var(--down-pour)
var(--regatta)
var(--hinting-blue)
var(--honest-blue)
var(--notable-hue)
var(--sporty-blue)
var(--denim)
var(--commodore)
var(--rarified-air)
var(--icelandic)
var(--blissful-blue)
var(--cosmos)
var(--scanda)
var(--revel-blue)
var(--indigo)
var(--mild-blue)
var(--icy)
var(--solitude)
var(--searching-blue)
var(--luxe-blue)
var(--dignified)
var(--starry-night)
var(--daydream)
var(--vesper-violet)
var(--soulful-blue)
var(--mesmerize)
var(--majestic-purple)
var(--silver-peony)
var(--grape-mist)
var(--ash-violet)
var(--mythical)
var(--purple-passage)
var(--dewberry)
var(--lite-lavender)
var(--enchant)
var(--obi-lilac)
var(--wood-violet)
var(--plummy)
var(--concord-grape)
var(--teaberry)
var(--irresistible)
var(--rosebay)
var(--red-clover)
var(--grandeur-plum)
var(--framboise)
var(--lighthearted-pink)
var(--childlike)
var(--haute-pink)
var(--cyclamen)
var(--ruby-shade)
var(--juneberry)
var(--priscilla)
var(--azalea-flower)
var(--jaipur-pink)
var(--tuberose)
var(--gala-pink)
var(--cerise)
var(--impatiens-petal)
var(--in-the-pink)
var(--cheery)
var(--coming-up-roses)
var(--heartfelt)
var(--valentine)
var(--alyssum)
var(--loveable)
var(--amaryllis)
var(--grenadine)
var(--coral-bells)
var(--poinsettia)
var(--bella-pink)
var(--hopeful)
var(--dishy-coral)
var(--begonia)
var(--enticing-red)
var(--tanager)
var(--oleander)
var(--youthful-coral)
var(--charisma)
var(--coral-reef)
var(--red-tomato)
var(--rave-red)
var(--koral-kicks)
var(--jovial)
var(--ravishing-coral)
var(--lei-flower)
var(--quite-coral)
var(--peppery)
var(--blushing)
var(--cosmetic-peach)
var(--sockeye)
var(--rejuvenate)
var(--emotional)
var(--hearty-orange)
var(--peach-blossom)
var(--certain-peach)
var(--sunset)
var(--emberglow)
var(--robust-orange)
var(--jalapeno)
var(--naive-peach)
var(--neighborly-peach)
var(--inventive-orange)
var(--copper-harbor)
var(--determined-orange)
var(--husky-orange)
var(--flattering-peach)
var(--avid-apricot)
var(--tangerine)
var(--outgoing-orange)
var(--rhumba-orange)
var(--yam)
var(--champagne)
var(--flan)
var(--delicious-melon)
var(--surprise-amber)
var(--adventure-orange)
var(--serape)
var(--amber-wave)
var(--welcome-white)
var(--captivating-cream)
var(--honey-blush)
var(--papaya)
var(--summer-day)
var(--saffron-thread)
var(--marigold)
var(--gardenia)
var(--enjoyable-yellow)
var(--afterglow)
var(--sunrise)
var(--yarrow)
var(--gold-crest)
var(--curry)
var(--morning-sun)
var(--banana-cream)
var(--jonquil)
var(--afternoon)
var(--butterfield)
var(--goldenrod)
var(--sunflower)
var(--full-moon)
var(--friendly-yellow)
var(--butter-up)
var(--june-day)
var(--bee)
var(--brittlebush)
var(--trinket)
var(--lemon-chiffon)
var(--lantern-light)
var(--solaria)
var(--overjoy)
var(--gambol-gold)
var(--glitzy-gold)
var(--auric)
var(--lily)
var(--glad-yellow)
var(--midday)
var(--quilt-gold)
var(--nugget)
var(--kingdom-gold)
var(--crispy-gold)
var(--daybreak)
var(--moonraker)
var(--lively-yellow)
var(--frolic)
var(--hep-green)
var(--high-strung)
var(--offbeat-green)
var(--springtime)
var(--gleeful)
var(--melange-green)
var(--parakeet)
var(--luau-green)
var(--verdant)
var(--lime-granita)
var(--dancing-green)
var(--lime-rickey)
var(--overt-green)
var(--gecko)
var(--paradise)
var(--cucumber)
var(--jardin)
var(--mesclun-green)
var(--pickle)
var(--talipot-palm)
var(--houseplant)
var(--lacewing)
var(--romaine)
var(--picnic)
var(--organic-green)
var(--grasshopper)
var(--espalier)
var(--jocular-green)
var(--kiwi)
var(--vegan)
var(--eco-green)
var(--kilkenny)
var(--derbyshire)
var(--mint-condition)
var(--reclining-green)
var(--lark-green)
var(--julep)
var(--argyle)
var(--greens)
var(--embellished-blue)
var(--waterfall)
var(--refresh)
var(--larchmere)
var(--jargon-jade)
var(--ionian)
var(--starboard)
var(--tame-teal)
var(--aqueduct)
var(--cooled-blue)
var(--rivulet)
var(--thermal-spring)
var(--poseidon)
var(--swimming)
var(--spa)
var(--mariner)
var(--aquarium)
var(--gulfstream)
var(--maxi-teal)
var(--bathe-blue)
var(--cay)
var(--rapture-blue)
var(--freshwater)
var(--briny)
var(--blue-nile)
var(--aviary-blue)
var(--liquid-blue)
var(--nautilus)
var(--jamaica-bay)
var(--cruising)
var(--amalfi)
var(--bravo-blue)
var(--quench-blue)
var(--cloudless)
var(--fountain)
var(--capri)
var(--blue-mosque)
var(--adriatic-sea)
var(--minor-blue)
var(--bluebell)
var(--flyway)
var(--major-blue)
var(--blue-plate)
var(--jay-blue)
var(--iceberg)
var(--soar)
var(--something-blue)
var(--regale-blue)
var(--jacaranda)
var(--danube)
var(--dignity-blue)
var(--rhythmic-blue)
var(--wondrous-blue)
var(--celestial)
var(--lobelia)
var(--lupine)
var(--honorable-blue)
var(--wishful-blue)
var(--breathtaking)
var(--awesome-violet)
var(--dahlia)
var(--gentian)
var(--valiant-violet)
var(--inspired-lilac)
var(--potentially-purple)
var(--wisteria)
var(--brave-purple)
var(--forgetmenot)
var(--izmir-purple)
var(--elation)
var(--rhapsody-lilac)
var(--magical)
var(--kismet)
var(--clematis)
var(--impulsive-purple)
var(--spangle)
var(--euphoric-lilac)
var(--novel-lilac)
var(--baroness)
var(--vigorous-violet)
var(--kimono-violet)
var(--exuberant-pink)
var(--dynamo)
var(--forward-fuchsia)
var(--hot)
var(--dragon-fruit)
var(--eros-pink)
var(--radish)
var(--cherries-jubilee)
var(--heartthrob)
var(--real-red)
var(--stop)
var(--positive-red)
var(--comical-coral)
var(--cayenne)
var(--raucous-orange)
var(--obstinate-orange)
var(--knockout-orange)
var(--invigorate)
var(--navel)
var(--osage-orange)
var(--carnival)
var(--sole)
var(--optimistic-yellow)
var(--daffodil)
var(--decisive-yellow)
var(--cheerful)
var(--gusto-gold)
var(--goldfinch)
var(--forsythia)
var(--fun-yellow)
var(--lemon-twist)
var(--daisy)
var(--confident-yellow)
var(--funky-yellow)
var(--eye-catching)
var(--citronella)
var(--humorous-green)
var(--center-stage)
var(--electric-lime)
var(--direct-green)
var(--envy)
var(--lucky-green)
var(--greenbelt)
var(--green-vibes)
var(--tantalizing-teal)
var(--nifty-turquoise)
var(--splashy)
var(--intense-teal)
var(--calypso)
var(--undercool)
var(--dynamic-blue)
var(--blue-chip)
var(--hyper-blue)
var(--blueblood)
var(--frank-blue)
var(--hyacinth-tint)
var(--morning-glory)
var(--free-spirit)
var(--passionate-purple)
var(--african-violet)
var(--fully-purple)
var(--jitterbug-jade)
var(--bohemian-black)
var(--domino)
var(--caviar)
var(--black-magic)
var(--inkwell)
var(--black-of-night)
var(--greenblack)
var(--ibis-white)
var(--marshmallow)
var(--downy)
var(--toque-white)
var(--snowbound)
var(--pure-white)
var(--extra-white)
var(--ceiling-bright-white)
var(--alabaster)
var(--pearly-white)
var(--white-duck)
var(--natural-choice)
var(--creamy)
var(--ivory-lace)
var(--eider-white)
var(--repose-gray)
var(--mindful-gray)
var(--dorian-gray)
var(--dovetail)
var(--gauntlet-gray)
var(--black-fox)
var(--simple-white)
var(--alpaca)
var(--requisite-gray)
var(--functional-gray)
var(--backdrop)
var(--griffin)
var(--wellbred-brown)
var(--incredible-white)
var(--agreeable-gray)
var(--anew-gray)
var(--mega-greige)
var(--warm-stone)
var(--brainstorm-bronze)
var(--status-bronze)
var(--aesthetic-white)
var(--accessible-beige)
var(--balanced-beige)
var(--tony-taupe)
var(--virtual-taupe)
var(--smokehouse)
var(--van-dyke-brown)
var(--shoji-white)
var(--worldly-gray)
var(--amazing-gray)
var(--intellectual-gray)
var(--anonymous)
var(--porpoise)
var(--urbane-bronze)
var(--nuance)
var(--useful-gray)
var(--analytical-gray)
var(--gray-area)
var(--adaptive-shade)
var(--suitable-brown)
var(--enduring-bronze)
var(--reserved-white)
var(--silver-strand)
var(--magnetic-gray)
var(--unusual-gray)
var(--attitude-gray)
var(--night-owl)
var(--rock-bottom)
var(--nebulous-white)
var(--passive)
var(--argos)
var(--gray-matters)
var(--cityscape)
var(--grizzle-gray)
var(--iron-ore)
var(--site-white)
var(--gray-screen)
var(--online)
var(--network-gray)
var(--software)
var(--web-gray)
var(--cyberspace)
var(--original-white)
var(--minute-mauve)
var(--ponder)
var(--quest-gray)
var(--sensuous-gray)
var(--stunning-shade)
var(--darkroom)
var(--arcade-white)
var(--futon)
var(--white-flour)
var(--whitetail)
var(--cotton-white)
var(--paperwhite)
var(--honied-white)
var(--threshold-taupe)
var(--dry-dock)
var(--sticks-stones)
var(--keystone-gray)
var(--manor-house)
var(--loggia)
var(--stone-lion)
var(--tavern-taupe)
var(--tiki-hut)
var(--chateau-brown)
var(--bungalow-beige)
var(--pavilion-beige)
var(--sanderling)
var(--foothills)
var(--homestead-brown)
var(--kestrel-white)
var(--china-doll)
var(--beach-house)
var(--mexican-sand)
var(--plantation-shutters)
var(--dormer-brown)
var(--meadowlark)
var(--burnished-brandy)
var(--dhurrie-beige)
var(--tree-branch)
var(--maison-blanche)
var(--nantucket-dune)
var(--windsor-greige)
var(--sand-beach)
var(--barcelona-beige)
var(--canvas-tan)
var(--urban-putty)
var(--khaki-shade)
var(--outerbanks)
var(--sandy-ridge)
var(--bittersweet-stem)
var(--irish-cream)
var(--tamarind)
var(--cork-wedge)
var(--artisan-tan)
var(--grecian-ivory)
var(--naturel)
var(--avenue-tan)
var(--fenland)
var(--pier)
var(--prairie-grass)
var(--sandbar)
var(--portico)
var(--studio-taupe)
var(--resort-tan)
var(--greek-villa)
var(--bauhaus-buff)
var(--fragile-beauty)
var(--steamed-milk)
var(--patience)
var(--creme)
var(--summer-white)
var(--medici-ivory)
var(--decor-white)
var(--impressive-ivory)
var(--lemon-meringue)
var(--roman-column)
var(--restful-white)
var(--polar-bear)
var(--oyster-bar)
var(--westhighland-white)
var(--natural-tan)
var(--neutral-ground)
var(--stucco)
var(--egret-white)
var(--casa-blanca)
var(--lotus-pod)
var(--eaglet-beige)
var(--echelon-ecru)
var(--chopsticks)
var(--blackberry)
var(--borscht)
var(--alaea)
var(--carnelian)
var(--salute)
var(--wild-currant)
var(--red-theatre)
var(--sun-dried-tomato)
var(--stolen-kiss)
var(--antique-red)
var(--show-stopper)
var(--habanero-chile)
var(--red-barn)
var(--crabby-apple)
var(--rustic-red)
var(--carriage-door)
var(--sommelier)
var(--only-natural)
var(--sierra-redwood)
var(--brick-paver)
var(--bolero)
var(--dockside-blue)
var(--indigo-batik)
var(--poolhouse)
var(--smoky-blue)
var(--gale-force)
var(--blue-cruise)
var(--santorini-blue)
var(--adrift)
var(--georgian-revival-blue)
var(--turkish-tile)
var(--tranquil-aqua)
var(--mountain-stream)
var(--aquasphere)
var(--st-barts)
var(--sea-serpent)
var(--breezy)
var(--mediterranean)
var(--deep-sea-dive)
var(--labradorite)
var(--seaworthy)
var(--silvermist)
var(--homburg-gray)
var(--cascades)
var(--slate-tile)
var(--mount-etna)
var(--zurich-white)
var(--white-heron)
var(--windfresh-white)
var(--grapy)
var(--raisin)
var(--city-loft)
var(--modern-gray)
var(--taupe-tone)
var(--pediment)
var(--palisade)
var(--origami-white)
var(--oyster-white)
var(--jogging-path)
var(--ethereal-mood)
var(--fawn-brindle)
var(--colonnade-gray)
var(--pavestone)
var(--pussywillow)
var(--gateway-gray)
var(--thunder-gray)
var(--first-star)
var(--crushed-ice)
var(--big-chill)
var(--silverplate)
var(--ellie-gray)
var(--front-porch)
var(--mineral-deposit)
var(--silverpointe)
var(--lattice)
var(--stamped-concrete)
var(--rhinestone)
var(--tinsmith)
var(--gray-clouds)
var(--gris)
var(--earl-grey)
var(--reflection)
var(--evening-shadow)
var(--monorail-silver)
var(--steely-gray)
var(--wall-street)
var(--fleur-de-sel)
var(--zircon)
var(--march-wind)
var(--summit-gray)
var(--gray-shingle)
var(--on-the-rocks)
var(--knitting-needles)
var(--pewter-cast)
var(--peppercorn)
var(--sealskin)
var(--paper-lantern)
var(--gold-vessel)
var(--cottage-cream)
var(--golden-gate)
var(--lanyard)
var(--tea-light)
var(--bees-wax)
var(--buff)
var(--concord-buff)
var(--white-raisin)
var(--hinoki)
var(--august-moon)
var(--sundew)
var(--row-house-tan)
var(--townhall-tan)
var(--biltmore-buff)
var(--cupola-yellow)
var(--stonebriar)
var(--dromedary-camel)
var(--mesa-tan)
var(--toasted-pine-nut)
var(--safari)
var(--straw-harvest)
var(--rustic-city)
var(--olde-world-gold)
var(--cavern-clay)
var(--spiced-cider)
var(--earthen-jug)
var(--tower-tan)
var(--wheat-penny)
var(--copper-wire)
var(--copper-pot)
var(--brandywine)
var(--pueblo)
var(--townhouse-tan)
var(--tawny-tan)
var(--oak-barrel)
var(--pottery-urn)
var(--croissant)
var(--ligonier-tan)
var(--oak-creek)
var(--fresco-cream)
var(--deer-valley)
var(--crescent-cream)
var(--travertine)
var(--colony-buff)
var(--canoe)
var(--yearling)
var(--lemon-verbena)
var(--koi-pond)
var(--green-sprout)
var(--edamame)
var(--forestwood)
var(--san-antonio-sage)
var(--lemongrass)
var(--bamboo-shoot)
var(--olive-grove)
var(--palm-leaf)
var(--garden-sage)
var(--meadow-trail)
var(--cargo-pants)
var(--herbal-wash)
var(--messenger-bag)
var(--willow-tree)
var(--agate-green)
var(--mountain-road)
var(--zeus)
var(--muddled-basil)
var(--rushing-river)
var(--recycled-glass)
var(--green-earth)
var(--laurel-woods)
var(--olympic-range)
var(--high-reflective-white)
var(--shell-white)
var(--audreys-blush)
var(--carleys-rose)
var(--ritas-rouge)
var(--coral-rose)
var(--coral-clay)
var(--rojo-dust)
var(--melon-meloso)
var(--bellini-fizz)
var(--subdued-sienna)
var(--windswept-canyon)
var(--sun-bleached-ochre)
var(--polvo-de-oro)
var(--olden-amber)
var(--pollen-powder)
var(--they-call-it-mellow)
var(--la-luna-amarilla)
var(--sunny-veranda)
var(--honey-bees)
var(--golden-plumeria)
var(--rayo-de-sol)
var(--naples-yellow)
var(--yellow-bird)
var(--dakota-wheat)
var(--vintage-gold)
var(--coriander-powder)
var(--tarnished-trumpet)
var(--pale-moss)
var(--dusted-olive)
var(--cool-avocado)
var(--limon-fresco)
var(--primavera)
var(--stay-in-lime)
var(--oh-pistachio)
var(--seawashed-glass)
var(--frosted-emerald)
var(--retro-mint)
var(--baby-bok-choy)
var(--cucuzza-verde)
var(--broccoflower)
var(--reseda-green)
var(--parisian-patina)
var(--verdigreen)
var(--aquastone)
var(--little-blue-box)
var(--bora-bora-shore)
var(--gentle-aquamarine)
var(--after-the-rain)
var(--surfin)
var(--sky-fall)
var(--vintage-vessel)
var(--aquaverde)
var(--blithe-blue)
var(--agua-fria)
var(--little-boy-blu)
var(--billowy-breeze)
var(--french-moire)
var(--aquitaine)
var(--secret-cove)
var(--silken-peacock)
var(--connors-lakefront)
var(--rest-assured)
var(--bluebird-feather)
var(--porch-ceiling)
var(--bluesy-note)
var(--perfect-periwinkle)
var(--agapanthus)
var(--forever-lilac)
var(--berry-frappe)
var(--veri-berri)
var(--baby-blue-eyes)
var(--dyers-woad)
var(--dried-lavender)
var(--dusty-heather)
var(--gentle-grape)
var(--berry-cream)
var(--ruby-violet)
var(--rosaline-pearl)
var(--cocoa-berry)
var(--velvety-chestnut)
var(--hushed-auburn)
var(--redend-point)
var(--chocolate-powder)
var(--dusted-truffle)
var(--cocoa-whip)
var(--touch-of-sand)
var(--cool-beige)
var(--smoky-beige)
var(--utaupeia)
var(--llama-wool)
var(--caraibe)
var(--halfcaff)
var(--iced-mocha)
var(--nearly-brown)
var(--playa-arenosa)
var(--ginger-root)
var(--beige-intenso)
var(--soft-fawn)
var(--baked-cookie)
var(--saddle-up)
var(--umber-rust)
var(--tres-naturale)
var(--quinoa)
var(--farro)
var(--woven-wicker)
var(--almond-roca)
var(--el-caramelo)
var(--uber-umber)
var(--double-latte)
var(--natural-linen)
var(--malabar)
var(--antler-velvet)
var(--song-thrush)
var(--mudslide)
var(--fallen-leaves)
var(--cowboy-boots)
var(--serengeti-grass)
var(--urban-jungle)
var(--tarnished-treasure)
var(--dirty-martini)
var(--tumblin-tumbleweed)
var(--sawgrass-basket)
var(--dried-edamame)
var(--barro-verde)
var(--verde-marron)
var(--oliva-oscuro)
var(--honed-soapstone)
var(--at-ease-soldier)
var(--green-onyx)
var(--jade-dragon)
var(--evergreen-fog)
var(--cornwall-slate)
var(--acacia-haze)
var(--jasper-stone)
var(--delft)
var(--whirlpool)
var(--lullaby)
var(--niebla-azul)
var(--stardew)
var(--debonair)
var(--blustery-sky)
var(--waterloo)
var(--moscow-midnight)
var(--cadet)
var(--moonmist)
var(--sleepy-hollow)
var(--faded-flaxflower)
var(--favorite-jeans)
var(--smoky-azurite)
var(--inky-blue)
var(--endless-sea)
var(--daphne)
var(--let-it-rain)
var(--moonlit-orchid)
var(--perle-noir)
var(--slate-violet)
var(--gris-morado)
var(--autumn-orchid)
var(--coquina)
var(--auger-shell)
var(--armadillo)
var(--dustblu)
var(--african-gray)
var(--tin-lizzie)
var(--illusive-green)
var(--gossamer-veil)
var(--drift-of-mist)
var(--polished-concrete)
var(--elephant-ear)
var(--chatura-gray)
var(--acier)
var(--felted-wool)
var(--studio-clay)
var(--shiitake)
var(--moth-wing)
var(--deep-forest-brown)
var(--dress-blues)
var(--salty-dog)
var(--in-the-navy)
var(--anchors-aweigh)
var(--aged-white)
var(--rojo-marron)
var(--dark-clove)
var(--foxhall-green)
var(--marea-baja)
var(--caramelized)
Before you go
Hopefully you found this post fun (and maybe even helpful!). If you're interested in learning more about our product, User Bug Report, subscribe to our newsletter or visit our website: https://www.userbugreport.com/.