Created
April 18, 2025 17:52
-
-
Save wperron/61a11ac90040aaaf00698bb5e58f4c28 to your computer and use it in GitHub Desktop.
Deno script that spits out Pantone™️ colors in alphabetical order, for when you just need to quickly name something and lack inspiration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S deno run -A --unstable-kv | |
// This script keeps track of the last beginning letter used, and selects | |
// a word from the colors.txt that start with the next one. It also keeps | |
// track of the colors used so that they never come up again until the list | |
// is completely exhausted. It keeps it's data in the Deno.KV database. | |
const kv = await Deno.openKv(); | |
const LAST_LETTER_KEY = "last_letter"; | |
const USED_COLORS_KEY = "used_colors"; | |
async function getNextLetter(currentLetter: string | null): Promise<string> { | |
if (!currentLetter) return "a"; | |
const nextCharCode = currentLetter.charCodeAt(0) + 1; | |
return nextCharCode > "z".charCodeAt(0) ? "a" : String.fromCharCode(nextCharCode); | |
} | |
async function getColorsStartingWith(letter: string): Promise<string[]> { | |
const colors: string[] = []; | |
for await (const color of COLORS) { | |
if (color.startsWith(letter)) { | |
colors.push(color); | |
} | |
} | |
return colors; | |
} | |
async function main() { | |
const lastLetterEntry = await kv.get([LAST_LETTER_KEY]); | |
const usedColorsEntry = await kv.get([USED_COLORS_KEY]); | |
const lastLetter = lastLetterEntry?.value || null; | |
const val = usedColorsEntry?.value ?? []; | |
const usedColors = new Set(val as string[]); | |
const nextLetter = await getNextLetter(lastLetter as string | null); | |
const availableColors = await getColorsStartingWith(nextLetter); | |
const unusedColors = availableColors.filter((color) => !usedColors.has(color)); | |
if (unusedColors.length === 0) { | |
console.error("All colors starting with", nextLetter, "have been used. Resetting..."); | |
usedColors.clear(); | |
} | |
const selectedColor = unusedColors[0] || availableColors[0]; | |
if (!selectedColor) { | |
console.error("No colors available starting with", nextLetter); | |
return; | |
} | |
usedColors.add(selectedColor); | |
await kv.set([LAST_LETTER_KEY], nextLetter); | |
await kv.set([USED_COLORS_KEY], Array.from(usedColors)); | |
console.log(selectedColor); | |
} | |
main().catch((err) => { | |
console.error("Error:", err); | |
}); | |
const COLORS = [ | |
"abbey-stone", | |
"absinthe-green", | |
"abyss", | |
"acacia", | |
"acai", | |
"acid-lime", | |
"acorn", | |
"adobe", | |
"adobe-rose", | |
"adriatic-blue", | |
"aegean-blue", | |
"african-violet", | |
"after-dark", | |
"afterglow", | |
"agate-gray", | |
"agate-green", | |
"agave-green", | |
"air-blue", | |
"airy-blue", | |
"alabaster-gleam", | |
"alaskan-blue", | |
"alesan", | |
"aleutian", | |
"alfalfa", | |
"algiers-blue", | |
"alhambra", | |
"alloy", | |
"allure", | |
"almond", | |
"almond-blossom", | |
"almond-buff", | |
"almond-cream", | |
"almond-milk", | |
"almond-oil", | |
"almondine", | |
"almost-apricot", | |
"almost-aqua", | |
"almost-mauve", | |
"aloe", | |
"aloe-wash", | |
"alpine-green", | |
"aluminum", | |
"amaranth", | |
"amaranth-purple", | |
"amazon", | |
"amber", | |
"amber-brown", | |
"amber-gold", | |
"amber-green", | |
"amber-yellow", | |
"amberglow", | |
"amberlight", | |
"ambrosia", | |
"american-beauty", | |
"amethyst", | |
"amethyst-orchid", | |
"amparo-blue", | |
"amphora", | |
"andorra", | |
"anemone", | |
"angel-blue", | |
"angel-falls", | |
"angel-wing", | |
"angora", | |
"anise-flower", | |
"antarctica", | |
"antelope", | |
"anthracite", | |
"antiqua-sand", | |
"antique-bronze", | |
"antique-gold", | |
"antique-green", | |
"antique-moss", | |
"antique-white", | |
"antler", | |
"apple-butter", | |
"apple-cinnamon", | |
"apple-green", | |
"appleblossom", | |
"apricot", | |
"apricot-blush", | |
"apricot-brandy", | |
"apricot-buff", | |
"apricot-cream", | |
"apricot-gelato", | |
"apricot-ice", | |
"apricot-illusion", | |
"apricot-nectar", | |
"apricot-orange", | |
"apricot-sherbet", | |
"apricot-tan", | |
"apricot-wash", | |
"aqua", | |
"aqua-foam", | |
"aqua-glass", | |
"aqua-gray", | |
"aqua-green", | |
"aqua-haze", | |
"aqua-sea", | |
"aqua-sky", | |
"aqua-splash", | |
"aquamarine", | |
"aquarelle", | |
"aquarius", | |
"aquatic", | |
"aquifer", | |
"arabesque", | |
"arabian-spice", | |
"aragon", | |
"arcadia", | |
"arcadian-green", | |
"arctic", | |
"arctic-dusk", | |
"arctic-ice", | |
"argan-oil", | |
"argyle-purple", | |
"arona", | |
"arrowwood", | |
"artichoke-green", | |
"artisans-gold", | |
"aruba-blue", | |
"ash", | |
"ash-rose", | |
"ashes-of-roses", | |
"ashley-blue", | |
"asparagus-green", | |
"aspen-gold", | |
"aspen-green", | |
"asphalt", | |
"aster-purple", | |
"astral-aura", | |
"atlantic-deep", | |
"atlantis", | |
"atmosphere", | |
"auburn", | |
"aura-orange", | |
"aurora", | |
"aurora-pink", | |
"aurora-red", | |
"autumn-blaze", | |
"autumn-blonde", | |
"autumn-glaze", | |
"autumn-glory", | |
"autumn-leaf", | |
"autumn-maple", | |
"autumn-sunset", | |
"autumnal", | |
"avocado", | |
"azalea", | |
"azalea-pink", | |
"aztec", | |
"azure-blue", | |
"baby-blue", | |
"bachelor-button", | |
"baja-blue", | |
"baked-apple", | |
"baked-clay", | |
"baleine-blue", | |
"ballad-blue", | |
"ballerina", | |
"ballet-slipper", | |
"balsam", | |
"balsam-green", | |
"baltic", | |
"baltic-sea", | |
"bamboo", | |
"banana", | |
"banana-cream", | |
"banana-crepe", | |
"barbados-cherry", | |
"barberry", | |
"barely-blue", | |
"barely-pink", | |
"bark", | |
"barn-red", | |
"baroque-rose", | |
"barrier-reef", | |
"basil", | |
"baton-rouge", | |
"bay", | |
"bayberry", | |
"bayou", | |
"beach-glass", | |
"beach-sand", | |
"beaujolais", | |
"beaver-fur", | |
"beech", | |
"beechnut", | |
"beeswax", | |
"beet-red", | |
"beetle", | |
"beetroot-purple", | |
"begonia-pink", | |
"beige", | |
"bel-air-blue", | |
"belgian-block", | |
"bellflower", | |
"bellini", | |
"beluga", | |
"bering-sea", | |
"bermuda", | |
"berry-conserve", | |
"beryl-green", | |
"beveled-glass", | |
"bijou-blue", | |
"biking-red", | |
"billiard", | |
"billowing-sail", | |
"birch", | |
"bird-of-paradise", | |
"birds-egg-green", | |
"biscay-bay", | |
"biscay-green", | |
"biscotti", | |
"biscuit", | |
"bison", | |
"bisque", | |
"bistre", | |
"bistro-green", | |
"bit-of-blue", | |
"bitter-chocolate", | |
"bittersweet", | |
"black-bean", | |
"black-beauty", | |
"black-coffee", | |
"black-forest", | |
"black-ink", | |
"black-iris", | |
"black-olive", | |
"black-onyx", | |
"black-plum", | |
"blackberry-cordial", | |
"blackberry-wine", | |
"blackened-pearl", | |
"blanc-de-blanc", | |
"blarney", | |
"blazing-orange", | |
"blazing-yellow", | |
"bleached-apricot", | |
"bleached-aqua", | |
"bleached-denim", | |
"bleached-sand", | |
"blithe", | |
"blooming-dahlia", | |
"blossom", | |
"blue-ashes", | |
"blue-aster", | |
"blue-atoll", | |
"blue-bell", | |
"blue-blush", | |
"blue-bonnet", | |
"blue-coral", | |
"blue-curacao", | |
"blue-danube", | |
"blue-depths", | |
"blue-flower", | |
"blue-fog", | |
"blue-fox", | |
"blue-glass", | |
"blue-glow", | |
"blue-granite", | |
"blue-graphite", | |
"blue-grass", | |
"blue-grotto", | |
"blue-haze", | |
"blue-heaven", | |
"blue-heron", | |
"blue-horizon", | |
"blue-ice", | |
"blue-indigo", | |
"blue-iris", | |
"blue-jewel", | |
"blue-light", | |
"blue-mirage", | |
"blue-mist", | |
"blue-moon", | |
"blue-nights", | |
"blue-opal", | |
"blue-radiance", | |
"blue-ribbon", | |
"blue-sapphire", | |
"blue-shadow", | |
"blue-spruce", | |
"blue-surf", | |
"blue-tint", | |
"blue-topaz", | |
"blue-turquoise", | |
"blue-wing-teal", | |
"blue-yonder", | |
"blueberry", | |
"bluebird", | |
"bluejay", | |
"blueprint", | |
"bluesteel", | |
"bluestone", | |
"bluewash", | |
"blush", | |
"blushing-bride", | |
"boa", | |
"bodacious", | |
"bog", | |
"bok-choy", | |
"bombay-brown", | |
"bone-brown", | |
"bone-white", | |
"bonnie-blue", | |
"bordeaux", | |
"bosphorus", | |
"bossa-nova", | |
"botanical-garden", | |
"bottle-green", | |
"bougainvillea", | |
"boulder", | |
"boysenberry", | |
"bracken", | |
"bran", | |
"brandied-apricot", | |
"brandied-melon", | |
"brandy-brown", | |
"brazilian-sand", | |
"breen", | |
"brick-dust", | |
"brick-red", | |
"bridal-blush", | |
"bridal-rose", | |
"bright-aqua", | |
"bright-chartreuse", | |
"bright-cobalt", | |
"bright-gold", | |
"bright-green", | |
"bright-lime-green", | |
"bright-marigold", | |
"bright-rose", | |
"bright-violet", | |
"bright-white", | |
"brilliant-blue", | |
"brilliant-white", | |
"brindle", | |
"bristol-blue", | |
"brittany-blue", | |
"bronze-brown", | |
"bronze-green", | |
"bronze-mist", | |
"brook-green", | |
"brown-patina", | |
"brown-rice", | |
"brown-stone", | |
"brown-sugar", | |
"brownie", | |
"brunette", | |
"brunnera-blue", | |
"bruschetta", | |
"brush", | |
"brushed-nickel", | |
"bubblegum", | |
"buckskin", | |
"buckthorn-brown", | |
"bud-green", | |
"buff", | |
"buff-orange", | |
"buff-yellow", | |
"bungee-cord", | |
"burgundy", | |
"burlwood", | |
"burnished-gold", | |
"burnished-lilac", | |
"burnt-brick", | |
"burnt-coral", | |
"burnt-henna", | |
"burnt-ochre", | |
"burnt-olive", | |
"burnt-orange", | |
"burnt-russet", | |
"burnt-sienna", | |
"burro", | |
"buttercream", | |
"buttercup", | |
"butterfly", | |
"butternut", | |
"butterscotch", | |
"butterum", | |
"byzantium", | |
"cabaret", | |
"cabbage", | |
"cabernet", | |
"cactus", | |
"cactus-flower", | |
"cadet", | |
"cadmium-green", | |
"cadmium-orange", | |
"cadmium-yellow", | |
"cafe-au-lait", | |
"cafe-creme", | |
"calla-green", | |
"calliste-green", | |
"calypso-coral", | |
"camel", | |
"camellia", | |
"camellia-rose", | |
"cameo-blue", | |
"cameo-brown", | |
"cameo-green", | |
"cameo-pink", | |
"cameo-rose", | |
"campanula", | |
"canal-blue", | |
"canary-green", | |
"canary-yellow", | |
"candied-ginger", | |
"candlelight-peach", | |
"candy-pink", | |
"caneel-bay", | |
"cannoli-cream", | |
"cantaloupe", | |
"canteen", | |
"canton", | |
"canyon-clay", | |
"canyon-rose", | |
"canyon-sunset", | |
"capers", | |
"cappuccino", | |
"capri", | |
"capri-breeze", | |
"captains-blue", | |
"capulet-olive", | |
"carafe", | |
"caramel", | |
"caramel-cafe", | |
"caramel-cream", | |
"carbon", | |
"cardinal", | |
"caribbean-sea", | |
"caribou", | |
"carmine", | |
"carmine-rose", | |
"carnelian", | |
"carob-brown", | |
"carrot", | |
"carrot-curl", | |
"cascade", | |
"cashew", | |
"cashmere-blue", | |
"cashmere-rose", | |
"castle-wall", | |
"castlerock", | |
"castor-gray", | |
"catawba-grape", | |
"cathay-spice", | |
"caviar", | |
"cayenne", | |
"cedar", | |
"cedar-green", | |
"cedar-wood", | |
"celadon", | |
"celadon-green", | |
"celadon-tint", | |
"celandine", | |
"celery", | |
"celery-green", | |
"celestial", | |
"celestial-blue", | |
"celosia-orange", | |
"cement", | |
"cendre-blue", | |
"ceramic", | |
"cerise", | |
"cerulean", | |
"ceylon-yellow", | |
"chai-tea", | |
"chalk-blue", | |
"chalk-pink", | |
"chalk-violet", | |
"chambray-blue", | |
"chamois", | |
"chamomile", | |
"chanterelle", | |
"charcoal-gray", | |
"chardonnay", | |
"charisma", | |
"charlock", | |
"chateau-gray", | |
"chateau-rose", | |
"cherries-jubilee", | |
"cherry-blossom", | |
"cherry-mahogany", | |
"cherry-tomato", | |
"chestnut", | |
"chicory-coffee", | |
"chili", | |
"chili-oil", | |
"chili-pepper", | |
"china-blue", | |
"chinchilla", | |
"chinese-red", | |
"chinese-violet", | |
"chino-green", | |
"chinois-green", | |
"chintz-rose", | |
"chipmunk", | |
"chive", | |
"chive-blossom", | |
"chocolate-brown", | |
"chocolate-chip", | |
"chocolate-fondant", | |
"chocolate-lab", | |
"chocolate-plum", | |
"chocolate-torte", | |
"chocolate-truffle", | |
"chrysanthemum", | |
"chutney", | |
"cilantro", | |
"cinder", | |
"cinnabar", | |
"cinnamon", | |
"cinnamon-stick", | |
"citadel", | |
"citron", | |
"citronelle", | |
"citrus", | |
"claret-red", | |
"classic-blue", | |
"classic-green", | |
"clay", | |
"clearly-aqua", | |
"clearwater", | |
"clematis-blue", | |
"climbing-ivy", | |
"cloisonne", | |
"cloud-blue", | |
"cloud-cream", | |
"cloud-dancer", | |
"cloud-gray", | |
"cloud-pink", | |
"cloudburst", | |
"clove", | |
"clover", | |
"coastal-fjord", | |
"cobblestone", | |
"cockatoo", | |
"cocoa-brown", | |
"coconut-milk", | |
"coconut-shell", | |
"cocoon", | |
"coffee-bean", | |
"coffee-liqueur", | |
"cognac", | |
"colonial-blue", | |
"colony-blue", | |
"columbia", | |
"comfrey", | |
"conch-shell", | |
"concord-grape", | |
"confetti", | |
"cool-blue", | |
"copen-blue", | |
"copper", | |
"copper-brown", | |
"copper-coin", | |
"copper-tan", | |
"coral", | |
"coral-almond", | |
"coral-blush", | |
"coral-cloud", | |
"coral-gold", | |
"coral-haze", | |
"coral-pink", | |
"coral-quartz", | |
"coral-reef", | |
"coral-rose", | |
"coral-sands", | |
"cordovan", | |
"coriander", | |
"cork", | |
"cornflower-blue", | |
"cornhusk", | |
"cornsilk", | |
"cornstalk", | |
"coronet-blue", | |
"corsair", | |
"corsican-blue", | |
"corydalis-blue", | |
"cosmic-sky", | |
"country-blue", | |
"covert-green", | |
"cowhide", | |
"crabapple", | |
"cradle-pink", | |
"cranberry", | |
"cream-blush", | |
"cream-gold", | |
"cream-pink", | |
"cream-tan", | |
"creampuff", | |
"creme-brulee", | |
"creme-de-menthe", | |
"creme-de-peche", | |
"creole-pink", | |
"cress-green", | |
"crimson", | |
"crockery", | |
"crocodile", | |
"crocus", | |
"crocus-petal", | |
"croissant", | |
"crown-blue", | |
"crown-jewel", | |
"crushed-berry", | |
"crushed-grape", | |
"crushed-violets", | |
"crystal-blue", | |
"crystal-gray", | |
"crystal-pink", | |
"crystal-rose", | |
"crystal-seas", | |
"crystal-teal", | |
"cub", | |
"cuban-sand", | |
"cumin", | |
"curds-and-whey", | |
"curry", | |
"custard", | |
"cyan-blue", | |
"cyber-yellow", | |
"cyclamen", | |
"cypress", | |
"dachshund", | |
"daffodil", | |
"dahlia", | |
"dahlia-mauve", | |
"dahlia-purple", | |
"daiquiri-green", | |
"damson", | |
"dandelion", | |
"daphne", | |
"dapple-gray", | |
"dark-blue", | |
"dark-cheddar", | |
"dark-citron", | |
"dark-denim", | |
"dark-earth", | |
"dark-forest", | |
"dark-green", | |
"dark-gull-gray", | |
"dark-ivy", | |
"dark-navy", | |
"dark-olive", | |
"dark-purple", | |
"dark-sapphire", | |
"dark-shadow", | |
"dark-slate", | |
"darkest-spruce", | |
"dawn", | |
"dawn-blue", | |
"dawn-pink", | |
"daybreak", | |
"dazzling-blue", | |
"deauville-mauve", | |
"decadent-chocolate", | |
"december-sky", | |
"deco-rose", | |
"deep-blue", | |
"deep-claret", | |
"deep-cobalt", | |
"deep-depths", | |
"deep-dive", | |
"deep-forest", | |
"deep-grass-green", | |
"deep-green", | |
"deep-jungle", | |
"deep-lagoon", | |
"deep-lake", | |
"deep-lavender", | |
"deep-lichen-green", | |
"deep-mahogany", | |
"deep-mint", | |
"deep-orchid", | |
"deep-peacock-blue", | |
"deep-periwinkle", | |
"deep-purple", | |
"deep-sea", | |
"deep-sea-coral", | |
"deep-taupe", | |
"deep-teal", | |
"deep-ultramarine", | |
"deep-water", | |
"deep-well", | |
"deep-wisteria", | |
"delft", | |
"delicacy", | |
"delicioso", | |
"della-robbia-blue", | |
"delphinium-blue", | |
"demitasse", | |
"desert-dust", | |
"desert-flower", | |
"desert-mist", | |
"desert-palm", | |
"desert-rose", | |
"desert-sage", | |
"desert-sand", | |
"desert-sun", | |
"desert-taupe", | |
"dew", | |
"dewberry", | |
"dewkist", | |
"diffused-orchid", | |
"dijon", | |
"dill", | |
"directoire-blue", | |
"diva-blue", | |
"doe", | |
"doeskin", | |
"double-cream", | |
"dove", | |
"dragon-fire", | |
"dragonfly", | |
"dream-blue", | |
"dresden-blue", | |
"dress-blues", | |
"dried-herb", | |
"dried-moss", | |
"dried-tobacco", | |
"driftwood", | |
"drizzle", | |
"dry-rose", | |
"dubarry", | |
"duck-green", | |
"duffel-bag", | |
"dull-gold", | |
"dune", | |
"dusk", | |
"dusk-blue", | |
"dusky-citron", | |
"dusky-green", | |
"dusky-orchid", | |
"dusted-clay", | |
"dusted-peri", | |
"dusty-aqua", | |
"dusty-blue", | |
"dusty-cedar", | |
"dusty-coral", | |
"dusty-jade-green", | |
"dusty-lavender", | |
"dusty-olive", | |
"dusty-orange", | |
"dusty-pink", | |
"dusty-rose", | |
"dusty-turquoise", | |
"dusty-yellow", | |
"dutch-blue", | |
"dynasty-green", | |
"earth-red", | |
"easter-egg", | |
"ebony", | |
"eclipse", | |
"ecru", | |
"ecru-olive", | |
"eden", | |
"eggnog", | |
"eggplant", | |
"eggshell-blue", | |
"egret", | |
"eiffel-tower", | |
"elderberry", | |
"electric-green", | |
"elephant-skin", | |
"elfin-yellow", | |
"elm", | |
"elm-green", | |
"elmwood", | |
"emberglow", | |
"emerald", | |
"emperador", | |
"empire-yellow", | |
"enamel-blue", | |
"endive", | |
"english-ivy", | |
"english-lavendar", | |
"english-manor", | |
"english-rose", | |
"ensign-blue", | |
"ephemera", | |
"epsom", | |
"ermine", | |
"espresso", | |
"estate-blue", | |
"ether", | |
"etherea", | |
"ethereal-blue", | |
"ethereal-green", | |
"etruscan-red", | |
"eucalyptus", | |
"evening-blue", | |
"evening-haze", | |
"evening-primrose", | |
"evening-sand", | |
"eventide", | |
"everglade", | |
"evergreen", | |
"excalibur", | |
"exotic-orange", | |
"exuberance", | |
"faded-denim", | |
"faded-rose", | |
"faience", | |
"fair-aqua", | |
"fair-green", | |
"fair-orchid", | |
"fairest-jade", | |
"fairway", | |
"fairy-tale", | |
"fairy-wren", | |
"falcon", | |
"fall-leaf", | |
"fallen-rock", | |
"fandango-pink", | |
"fanfare", | |
"fawn", | |
"feather-gray", | |
"federal-blue", | |
"feldspar", | |
"fennel-seed", | |
"fenugreek", | |
"fern", | |
"fern-green", | |
"festival-fuchsia", | |
"fiery-red", | |
"fiesta", | |
"fig", | |
"fir", | |
"fir-green", | |
"firecracker", | |
"fired-brick", | |
"fjord-blue", | |
"flame", | |
"flame-orange", | |
"flame-scarlet", | |
"flamingo", | |
"flamingo-pink", | |
"flan", | |
"flax", | |
"flint", | |
"flint-gray", | |
"flint-stone", | |
"florida-keys", | |
"fluorite-green", | |
"foam-green", | |
"fog", | |
"fog-green", | |
"foggy-dew", | |
"foliage", | |
"foliage-green", | |
"folkstone-gray", | |
"fondue-fudge", | |
"forest-biome", | |
"forest-green", | |
"forest-night", | |
"forest-shade", | |
"forever-blue", | |
"forged-iron", | |
"forget-me-not", | |
"fossil", | |
"four-leaf-clover", | |
"foxglove", | |
"fragrant-lilac", | |
"frappe", | |
"freesia", | |
"french-blue", | |
"french-roast", | |
"french-vanilla", | |
"fresh-salmon", | |
"friar-brown", | |
"frost", | |
"frost-gray", | |
"frosted-almond", | |
"frosty-green", | |
"frosty-spruce", | |
"frozen-dew", | |
"fruit-dove", | |
"fuchsia-pink", | |
"fuchsia-purple", | |
"fuchsia-red", | |
"fuchsia-rose", | |
"fudge", | |
"fudgesickle", | |
"fungi", | |
"fusion-coral", | |
"galapagos-green", | |
"galaxy-blue", | |
"ganache", | |
"garden-glade", | |
"garden-green", | |
"garden-topiary", | |
"gardenia", | |
"gargoyle", | |
"garnet", | |
"garnet-rose", | |
"gentian-violet", | |
"georgia-peach", | |
"geranium", | |
"geranium-pink", | |
"ghost-gray", | |
"gibraltar-sea", | |
"gilded-beige", | |
"ginger", | |
"ginger-bread", | |
"ginger-root", | |
"ginger-snap", | |
"ginger-spice", | |
"glacier", | |
"glacier-gray", | |
"glass-green", | |
"glazed-ginger", | |
"gleam", | |
"gloxinia", | |
"goat", | |
"goblin-blue", | |
"goji-berry", | |
"gold-earth", | |
"gold-flame", | |
"gold-fusion", | |
"golden-apricot", | |
"golden-brown", | |
"golden-cream", | |
"golden-fleece", | |
"golden-glow", | |
"golden-green", | |
"golden-haze", | |
"golden-kiwi", | |
"golden-lime", | |
"golden-mist", | |
"golden-nugget", | |
"golden-oak", | |
"golden-ochre", | |
"golden-olive", | |
"golden-orange", | |
"golden-palm", | |
"golden-poppy", | |
"golden-rod", | |
"golden-spice", | |
"golden-straw", | |
"golden-yellow", | |
"goldfinch", | |
"golf-green", | |
"gossamer-green", | |
"gossamer-pink", | |
"gothic-grape", | |
"gothic-olive", | |
"granada-sky", | |
"granita", | |
"granite-gray", | |
"granite-green", | |
"grape", | |
"grape-compote", | |
"grape-jam", | |
"grape-juice", | |
"grape-kiss", | |
"grape-leaf", | |
"grape-nectar", | |
"grape-royale", | |
"grape-shake", | |
"grape-wine", | |
"grapeade", | |
"grapemist", | |
"graphite", | |
"grass-green", | |
"grasshopper", | |
"gravel", | |
"gray-blue", | |
"gray-dawn", | |
"gray-flannel", | |
"gray-green", | |
"gray-lilac", | |
"gray-mist", | |
"gray-morn", | |
"gray-pinstripe", | |
"gray-ridge", | |
"gray-sand", | |
"gray-violet", | |
"grayed-jade", | |
"graystone", | |
"green-ash", | |
"green-banana", | |
"green-bay", | |
"green-blue-slate", | |
"green-essence", | |
"green-eyes", | |
"green-flash", | |
"green-gables", | |
"green-glow", | |
"green-haze", | |
"green-lily", | |
"green-milieu", | |
"green-moss", | |
"green-oasis", | |
"green-olive", | |
"green-sheen", | |
"green-spruce", | |
"green-sulphur", | |
"green-tea", | |
"green-tint", | |
"greenbriar", | |
"greener-pastures", | |
"greenery", | |
"greengage", | |
"greenlake", | |
"greige", | |
"grenadine", | |
"griffin", | |
"grisaille", | |
"guacamole", | |
"gulf-stream", | |
"gull", | |
"gull-gray", | |
"gumdrop-green", | |
"gunmetal", | |
"habanero-gold", | |
"halogen-blue", | |
"harbor-blue", | |
"harbor-gray", | |
"harbor-mist", | |
"harvest-gold", | |
"harvest-pumpkin", | |
"haute-red", | |
"hawaiian-ocean", | |
"hawaiian-sunset", | |
"hawaiian-surf", | |
"hawthorn-rose", | |
"hay", | |
"hazel", | |
"hazelnut", | |
"heather", | |
"heather-rose", | |
"heavenly-pink", | |
"hedge-green", | |
"heirloom-lilac", | |
"heliotrope", | |
"hemlock", | |
"hemp", | |
"henna", | |
"herbal-garden", | |
"heritage-blue", | |
"heron", | |
"hibiscus", | |
"high-rise", | |
"high-risk-red", | |
"hint-of-mint", | |
"holiday", | |
"holly-berry", | |
"holly-green", | |
"hollyhock", | |
"honey", | |
"honey-ginger", | |
"honey-gold", | |
"honey-mustard", | |
"honey-peach", | |
"honey-yellow", | |
"honeydew", | |
"honeysuckle", | |
"horizon-blue", | |
"hortensia", | |
"hot-chocolate", | |
"hot-coral", | |
"hot-pink", | |
"hot-sauce", | |
"huckleberry", | |
"humus", | |
"hunter-green", | |
"hushed-green", | |
"hushed-violet", | |
"hyacinth", | |
"hyacinth-violet", | |
"hydrangea", | |
"hydro", | |
"ibis-rose", | |
"ibiza-blue", | |
"ice", | |
"ice-flow", | |
"ice-green", | |
"iceberg-green", | |
"iced-aqua", | |
"iced-coffee", | |
"iceland-poppy", | |
"icelandic-blue", | |
"icicle", | |
"icy-morn", | |
"iguana", | |
"illusion-blue", | |
"impala", | |
"impatiens-pink", | |
"imperial-blue", | |
"imperial-palace", | |
"imperial-purple", | |
"inca-gold", | |
"incense", | |
"india-ink", | |
"indian-tan", | |
"indian-teal", | |
"indigo", | |
"indigo-bunting", | |
"infinity", | |
"ink-blue", | |
"insignia-blue", | |
"iolite", | |
"iris", | |
"iris-bloom", | |
"iris-orchid", | |
"irish-cream", | |
"irish-green", | |
"iron", | |
"iron-gate", | |
"island-green", | |
"island-paradise", | |
"italian-plum", | |
"italian-straw", | |
"ivory-cream", | |
"ivy", | |
"ivy-green", | |
"jacaranda", | |
"jade-cream", | |
"jade-green", | |
"jade-lime", | |
"jadeite", | |
"jadesheen", | |
"jaffa-orange", | |
"jalapeno-red", | |
"jasmine-green", | |
"jasper", | |
"java", | |
"jazzy", | |
"jelly-bean", | |
"jester-red", | |
"jet-black", | |
"jet-set", | |
"jet-stream", | |
"jojoba", | |
"jolly-green", | |
"june-bug", | |
"jungle-green", | |
"juniper", | |
"jurassic-gold", | |
"kalamata", | |
"kale", | |
"kangaroo", | |
"kashmir", | |
"katydid", | |
"keepsake-lilac", | |
"kelly-green", | |
"kelp", | |
"kentucky-blue", | |
"ketchup", | |
"khaki", | |
"kiwi", | |
"koi", | |
"kombu-green", | |
"kumquat", | |
"lagoon", | |
"lake-blue", | |
"lambs-wool", | |
"langoustino", | |
"languid-lavender", | |
"lantana", | |
"lapis", | |
"lapis-blue", | |
"lark", | |
"larkspur", | |
"latigo-bay", | |
"latte", | |
"laurel-green", | |
"laurel-oak", | |
"laurel-wreath", | |
"lavender", | |
"lavender-aura", | |
"lavender-blue", | |
"lavender-crystal", | |
"lavender-fog", | |
"lavender-frost", | |
"lavender-gray", | |
"lavender-herb", | |
"lavender-lustre", | |
"lavender-mist", | |
"lavender-violet", | |
"lavendula", | |
"lead", | |
"lead-gray", | |
"leaf-green", | |
"leather-brown", | |
"leek-green", | |
"legion-blue", | |
"lemon", | |
"lemon-chrome", | |
"lemon-curry", | |
"lemon-drop", | |
"lemon-grass", | |
"lemon-icing", | |
"lemon-meringue", | |
"lemon-verbena", | |
"lemon-zest", | |
"lemonade", | |
"lentil-sprout", | |
"leprechaun", | |
"lettuce-green", | |
"liberty", | |
"lichen", | |
"lichen-blue", | |
"licorice", | |
"light-grass-green", | |
"light-gray", | |
"light-lilac", | |
"light-mahogany", | |
"light-taupe", | |
"lightest-sky", | |
"lilac-ash", | |
"lilac-breeze", | |
"lilac-chiffon", | |
"lilac-gray", | |
"lilac-hint", | |
"lilac-marble", | |
"lilac-rose", | |
"lilac-sachet", | |
"lilac-snow", | |
"lilas", | |
"lily-green", | |
"lily-pad", | |
"lily-white", | |
"lima-bean", | |
"lime-cream", | |
"lime-green", | |
"lime-popsicle", | |
"lime-punch", | |
"lime-sherbet", | |
"limeade", | |
"limelight", | |
"limestone", | |
"limoges", | |
"limpet-shell", | |
"linden-green", | |
"linen", | |
"lint", | |
"lion", | |
"lipstick-red", | |
"little-boy-blue", | |
"living-coral", | |
"lizard", | |
"lobster-bisque", | |
"loden-frost", | |
"loden-green", | |
"loganberry", | |
"lollipop", | |
"london-fog", | |
"lotus", | |
"love-potion", | |
"luminary-green", | |
"lunar-rock", | |
"lupine", | |
"lush-meadow", | |
"lychee", | |
"lyons-blue", | |
"macadamia", | |
"macaroon", | |
"macaw-green", | |
"madder-brown", | |
"magenta", | |
"magenta-haze", | |
"magenta-purple", | |
"magnet", | |
"mahogany", | |
"mahogany-rose", | |
"maize", | |
"majesty", | |
"majolica-blue", | |
"major-brown", | |
"malachite-green", | |
"malaga", | |
"malibu-blue", | |
"mallard-blue", | |
"mallard-green", | |
"mandarin-orange", | |
"mandarin-red", | |
"mango", | |
"mango-mojito", | |
"maple-sugar", | |
"margarita", | |
"marigold", | |
"marina", | |
"marine-blue", | |
"marine-green", | |
"maritime-blue", | |
"marlin", | |
"marmalade", | |
"maroon", | |
"marron", | |
"mars-red", | |
"marsala", | |
"marshmallow", | |
"martini-olive", | |
"marys-rose", | |
"marzipan", | |
"maui-blue", | |
"mauve-chalk", | |
"mauve-mist", | |
"mauve-morn", | |
"mauve-orchid", | |
"mauve-shadows", | |
"mauve-wine", | |
"mauveglow", | |
"mauvewood", | |
"mayfly", | |
"mazarine-blue", | |
"meadow", | |
"meadow-green", | |
"meadow-mauve", | |
"meadow-mist", | |
"meadow-violet", | |
"meadowbrook", | |
"meadowlark", | |
"mecca-orange", | |
"medal-bronze", | |
"medieval-blue", | |
"mediterranea", | |
"mediterranean-blue", | |
"medium-green", | |
"meerkat", | |
"mellow-buff", | |
"mellow-green", | |
"mellow-mauve", | |
"mellow-rose", | |
"mellow-yellow", | |
"melon", | |
"mercury", | |
"merlot", | |
"mermaid", | |
"mesa-rose", | |
"metal", | |
"meteorite", | |
"methyl-blue", | |
"micro-chip", | |
"midnight", | |
"midnight-navy", | |
"military-olive", | |
"milky-blue", | |
"milky-green", | |
"mimosa", | |
"mineral-blue", | |
"mineral-gray", | |
"mineral-green", | |
"mineral-red", | |
"mineral-yellow", | |
"ming", | |
"ming-green", | |
"minimal-gray", | |
"minion-yellow", | |
"mink", | |
"mint", | |
"mint-green", | |
"mint-leaf", | |
"mirage-gray", | |
"mist-green", | |
"misted-yellow", | |
"mistletoe", | |
"misty-blue", | |
"misty-jade", | |
"misty-lilac", | |
"misty-rose", | |
"mocha-bisque", | |
"mocha-mousse", | |
"mock-orange", | |
"mojave-desert", | |
"mole", | |
"molten-lava", | |
"monaco-blue", | |
"monks-robe", | |
"montana-grape", | |
"monument", | |
"mood-indigo", | |
"moon-mist", | |
"moon-rock", | |
"moonbeam", | |
"moonless-night", | |
"moonlight", | |
"moonlight-blue", | |
"moonlight-jade", | |
"moonlit-ocean", | |
"moonlite-mauve", | |
"moonscape", | |
"moonstruck", | |
"morel", | |
"morganite", | |
"morning-glory", | |
"morning-mist", | |
"moroccan-blue", | |
"mosaic-blue", | |
"moss", | |
"moss-gray", | |
"mosstone", | |
"moth", | |
"mother-of-pearl", | |
"mountain-view", | |
"mourning-dove", | |
"mulberry", | |
"mulberry-purple", | |
"mulch", | |
"mulled-grape", | |
"murmur", | |
"mushroom", | |
"muskmelon", | |
"mustang", | |
"mustard-gold", | |
"muted-clay", | |
"muted-lime", | |
"mykonos-blue", | |
"myrtle", | |
"mysterioso", | |
"mystic-blue", | |
"mystical", | |
"narcissus", | |
"nasturtium", | |
"natural", | |
"nautical-blue", | |
"navagio-bay", | |
"navajo", | |
"navigate", | |
"navy-blazer", | |
"navy-blue", | |
"navy-cosmos", | |
"navy-peony", | |
"nebulas-blue", | |
"nectarine", | |
"neptune-green", | |
"neutral-gray", | |
"new-wheat", | |
"niagara", | |
"night-sky", | |
"nightshade", | |
"nightshadow-blue", | |
"nile", | |
"nile-blue", | |
"nile-green", | |
"nimbus-cloud", | |
"nine-iron", | |
"nirvana", | |
"nocturne", | |
"nomad", | |
"norse-blue", | |
"north-atlantic", | |
"north-sea", | |
"nostalgia-rose", | |
"nougat", | |
"novelle-peach", | |
"nude", | |
"nugget", | |
"nugget-gold", | |
"nutmeg", | |
"nutria", | |
"oak-buff", | |
"oasis", | |
"oatmeal", | |
"obsidian", | |
"ocean-depths", | |
"ocean-wave", | |
"ochre", | |
"odyssey-gray", | |
"oil-blue", | |
"oil-green", | |
"oil-yellow", | |
"old-gold", | |
"old-rose", | |
"olive-branch", | |
"olive-drab", | |
"olive-gray", | |
"olive-night", | |
"olive-oil", | |
"olivenite", | |
"olivine", | |
"olympian-blue", | |
"ombre-blue", | |
"omphalodes", | |
"online-lime", | |
"opal", | |
"opal-blue", | |
"opal-gray", | |
"opaline-green", | |
"opera-mauve", | |
"orange-chiffon", | |
"orange-com", | |
"orange-ochre", | |
"orange-peel", | |
"orange-pepper", | |
"orange-popsicle", | |
"orange-rust", | |
"orange-tiger", | |
"orangeade", | |
"orchid", | |
"orchid-bloom", | |
"orchid-bouquet", | |
"orchid-haze", | |
"orchid-hush", | |
"orchid-ice", | |
"orchid-mist", | |
"orchid-petal", | |
"orchid-pink", | |
"orchid-smoke", | |
"orchid-tint", | |
"orient-blue", | |
"orion-blue", | |
"otter", | |
"outer-space", | |
"overcast", | |
"oxblood-red", | |
"oxford-tan", | |
"oyster-gray", | |
"oyster-mushroom", | |
"oyster-white", | |
"pacific", | |
"pacific-coast", | |
"pagoda-blue", | |
"paisley-purple", | |
"palace-blue", | |
"pale-aqua", | |
"pale-banana", | |
"pale-blue", | |
"pale-blush", | |
"pale-dogwood", | |
"pale-gold", | |
"pale-green", | |
"pale-iris", | |
"pale-khaki", | |
"pale-lilac", | |
"pale-lime-yellow", | |
"pale-marigold", | |
"pale-mauve", | |
"pale-olive-green", | |
"pale-peach", | |
"palm", | |
"paloma", | |
"pampas", | |
"pansy", | |
"papaya", | |
"papaya-punch", | |
"paprika", | |
"papyrus", | |
"parachute-purple", | |
"paradise-green", | |
"paradise-pink", | |
"parakeet", | |
"parasailing", | |
"parchment", | |
"parfait-pink", | |
"parisian-blue", | |
"parisian-night", | |
"parrot-green", | |
"parsnip", | |
"partridge", | |
"passion-flower", | |
"pastel-blue", | |
"pastel-green", | |
"pastel-lavender", | |
"pastel-lilac", | |
"pastel-parchment", | |
"pastel-rose-tan", | |
"pastel-turquoise", | |
"pastel-yellow", | |
"pastry-shell", | |
"patina-green", | |
"patrician-purple", | |
"patriot-blue", | |
"pavement", | |
"peach", | |
"peach-amber", | |
"peach-beige", | |
"peach-bloom", | |
"peach-blossom", | |
"peach-blush", | |
"peach-bud", | |
"peach-caramel", | |
"peach-cobbler", | |
"peach-dust", | |
"peach-echo", | |
"peach-fuzz", | |
"peach-melba", | |
"peach-nectar", | |
"peach-nougat", | |
"peach-parfait", | |
"peach-pearl", | |
"peach-pink", | |
"peach-puree", | |
"peach-quartz", | |
"peach-whip", | |
"peaches-n-cream", | |
"peachskin", | |
"peachy-keen", | |
"peacoat", | |
"peacock-blue", | |
"peacock-green", | |
"peapod", | |
"pear-sorbet", | |
"pearl", | |
"pearl-blue", | |
"pearl-blush", | |
"pearled-ivory", | |
"peat", | |
"pebble", | |
"pecan-brown", | |
"pelican", | |
"peony", | |
"pepper-green", | |
"peppercorn", | |
"peppermint", | |
"peridot", | |
"periscope", | |
"persian-jewel", | |
"persian-red", | |
"persian-violet", | |
"persimmon", | |
"persimmon-orange", | |
"pesto", | |
"petal-pink", | |
"petit-four", | |
"petrified-oak", | |
"petunia", | |
"pewter", | |
"peyote", | |
"phantom", | |
"phantom-green", | |
"pheasant", | |
"phlox", | |
"phlox-pink", | |
"picante", | |
"picasso-lily", | |
"pickled-beet", | |
"pigeon", | |
"pine-bark", | |
"pine-green", | |
"pine-grove", | |
"pineapple-slice", | |
"pinecone", | |
"pineneedle", | |
"pink-carnation", | |
"pink-dogwood", | |
"pink-flambe", | |
"pink-icing", | |
"pink-lady", | |
"pink-lavender", | |
"pink-lemonade", | |
"pink-mist", | |
"pink-nectar", | |
"pink-peacock", | |
"pink-salt", | |
"pink-sand", | |
"pink-tint", | |
"pink-yarrow", | |
"piquant-green", | |
"pirate-black", | |
"pistachio-green", | |
"pistachio-shell", | |
"placid-blue", | |
"plantation", | |
"plaza-taupe", | |
"plein-air", | |
"plum", | |
"plum-caspia", | |
"plum-jam", | |
"plum-kitten", | |
"plum-perfect", | |
"plum-purple", | |
"plum-truffle", | |
"plum-wine", | |
"plume", | |
"poinciana", | |
"poinsettia", | |
"poison-green", | |
"polignac", | |
"pomegranate", | |
"pompeian-red", | |
"ponderosa-pine", | |
"pool-blue", | |
"pool-green", | |
"popcorn", | |
"poppy-red", | |
"porcelain", | |
"porcelain-blue", | |
"porcelain-green", | |
"porcelain-rose", | |
"porcini", | |
"porpoise", | |
"port", | |
"port-royale", | |
"portabella", | |
"poseidon", | |
"posy-green", | |
"potent-purple", | |
"potpourri", | |
"potters-clay", | |
"potting-soil", | |
"powder-blue", | |
"powder-pink", | |
"powder-puff", | |
"prairie-sand", | |
"prairie-sunset", | |
"praline", | |
"primrose-pink", | |
"primrose-yellow", | |
"princess-blue", | |
"prism-pink", | |
"prism-violet", | |
"pristine", | |
"provence", | |
"provincial-blue", | |
"prune", | |
"prune-purple", | |
"puce", | |
"puffins-bill", | |
"pumice-stone", | |
"pumpkin", | |
"pumpkin-spice", | |
"pure-cashmere", | |
"pureed-pumpkin", | |
"puritan-gray", | |
"purple-ash", | |
"purple-corallite", | |
"purple-dove", | |
"purple-gumdrop", | |
"purple-haze", | |
"purple-heart", | |
"purple-heather", | |
"purple-impression", | |
"purple-magic", | |
"purple-opulence", | |
"purple-orchid", | |
"purple-passion", | |
"purple-pennant", | |
"purple-plumeria", | |
"purple-potion", | |
"purple-reign", | |
"purple-rose", | |
"purple-sage", | |
"purple-sapphire", | |
"purple-velvet", | |
"purple-wine", | |
"pussywillow-gray", | |
"putty", | |
"quail", | |
"quarry", | |
"quartz-pink", | |
"quetzal-green", | |
"quicksilver", | |
"quiet-gray", | |
"quiet-green", | |
"quiet-harbor", | |
"quiet-shade", | |
"rabbit", | |
"racing-red", | |
"radiant-orchid", | |
"radiant-yellow", | |
"raffia", | |
"rain-drum", | |
"rain-forest", | |
"raindrops", | |
"rainy-day", | |
"raisin", | |
"rapture-rose", | |
"raspberry", | |
"raspberry-radiance", | |
"raspberry-rose", | |
"raspberry-sorbet", | |
"raspberry-wine", | |
"rattan", | |
"raven", | |
"raw-sienna", | |
"raw-umber", | |
"rawhide", | |
"real-teal", | |
"red-bud", | |
"red-clay", | |
"red-dahlia", | |
"red-mahogany", | |
"red-ochre", | |
"red-orange", | |
"red-pear", | |
"red-plum", | |
"red-violet", | |
"redwood", | |
"reed", | |
"reed-yellow", | |
"reef-waters", | |
"reflecting-pond", | |
"regal-orchid", | |
"regatta", | |
"renaissance-rose", | |
"reseda", | |
"rhapsody", | |
"rhododendron", | |
"rhubarb", | |
"ribbon-red", | |
"rich-gold", | |
"rifle-green", | |
"rio-red", | |
"river-blue", | |
"riverside", | |
"riviera", | |
"roan-rouge", | |
"roasted-cashew", | |
"roasted-pecan", | |
"rock-ridge", | |
"rocky-road", | |
"rococco-red", | |
"roebuck", | |
"rooibos-tea", | |
"root-beer", | |
"rose-brown", | |
"rose-cloud", | |
"rose-dawn", | |
"rose-dust", | |
"rose-of-sharon", | |
"rose-quartz", | |
"rose-red", | |
"rose-shadow", | |
"rose-smoke", | |
"rose-tan", | |
"rose-taupe", | |
"rose-violet", | |
"rose-water", | |
"rose-wine", | |
"rosebloom", | |
"rosebud", | |
"rosette", | |
"rosewater", | |
"rosewood", | |
"rosin", | |
"rouge-red", | |
"royal-blue", | |
"royal-lilac", | |
"royal-purple", | |
"rubber", | |
"ruby-wine", | |
"rugby-tan", | |
"rum-raisin", | |
"rumba-red", | |
"russet", | |
"russet-brown", | |
"russet-orange", | |
"rust", | |
"rustic-brown", | |
"rutabaga", | |
"sable", | |
"sachet-pink", | |
"safari", | |
"saffron", | |
"sage", | |
"sage-green", | |
"sagebrush-green", | |
"sahara-sun", | |
"sailor-blue", | |
"salmon", | |
"salmon-buff", | |
"salmon-rose", | |
"salsa", | |
"salute", | |
"samba", | |
"samoan-sun", | |
"sand", | |
"sand-dollar", | |
"sand-verbena", | |
"sandshell", | |
"sandstone", | |
"sandstorm", | |
"sangria", | |
"sap-green", | |
"sargasso-sea", | |
"sassafras", | |
"satellite", | |
"sauterne", | |
"saxony-blue", | |
"scallop-shell", | |
"scarab", | |
"scarlet", | |
"scarlet-ibis", | |
"scarlet-sage", | |
"scooter", | |
"scuba-blue", | |
"sea-angel", | |
"sea-blue", | |
"sea-foam", | |
"sea-fog", | |
"sea-green", | |
"sea-mist", | |
"sea-moss", | |
"sea-pine", | |
"sea-pink", | |
"sea-salt", | |
"sea-spray", | |
"sea-turtle", | |
"seacrest", | |
"seafoam-green", | |
"seagrass", | |
"seal-brown", | |
"seaport", | |
"seashell-pink", | |
"sedona-sage", | |
"seedling", | |
"seedpearl", | |
"semolina", | |
"seneca-rock", | |
"sepia", | |
"sepia-rose", | |
"sepia-tint", | |
"sequoia", | |
"serenity", | |
"sesame", | |
"shaded-spruce", | |
"shadow", | |
"shadow-gray", | |
"shadow-green", | |
"shadow-lime", | |
"shadow-purple", | |
"shady-glade", | |
"shale", | |
"shale-green", | |
"shamrock", | |
"shark", | |
"sharkskin", | |
"sharp-green", | |
"shaved-chocolate", | |
"sheepskin", | |
"sheer-lilac", | |
"sheer-pink", | |
"shell", | |
"shell-coral", | |
"shell-pink", | |
"shifting-sand", | |
"shitake", | |
"shocking-pink", | |
"shopping-bag", | |
"shrimp", | |
"shrinking-violet", | |
"sierra", | |
"silt-green", | |
"silver", | |
"silver-birch", | |
"silver-blue", | |
"silver-bullet", | |
"silver-cloud", | |
"silver-fern", | |
"silver-filigree", | |
"silver-gray", | |
"silver-green", | |
"silver-lake-blue", | |
"silver-lining", | |
"silver-mink", | |
"silver-peony", | |
"silver-pine", | |
"silver-pink", | |
"silver-sage", | |
"silver-sconce", | |
"simply-green", | |
"simply-taupe", | |
"sirocco", | |
"ski-patrol", | |
"skipper-blue", | |
"sky-blue", | |
"sky-captain", | |
"sky-gray", | |
"skydiver", | |
"skylight", | |
"skyway", | |
"slate", | |
"slate-black", | |
"slate-gray", | |
"slate-green", | |
"slate-rose", | |
"sleet", | |
"smoke", | |
"smoke-blue", | |
"smoke-gray", | |
"smoke-green", | |
"smoke-pine", | |
"smoked-paprika", | |
"smoked-pearl", | |
"smoky-grape", | |
"snapdragon", | |
"snorkel-blue", | |
"snow-white", | |
"sodalite-blue", | |
"soft-pink", | |
"solar-power", | |
"soothing-sea", | |
"southern-moss", | |
"soybean", | |
"spa-blue", | |
"spanish-villa", | |
"sparkling-grape", | |
"sparrow", | |
"spearmint", | |
"spectra-green", | |
"spectra-yellow", | |
"spectrum-blue", | |
"sphinx", | |
"spice-route", | |
"spiced-apple", | |
"spiced-coral", | |
"spiced-plum", | |
"spicy-mustard", | |
"spicy-orange", | |
"spinach-green", | |
"split-pea", | |
"sponge", | |
"spray", | |
"spray-green", | |
"spring-bouquet", | |
"spring-bud", | |
"spring-crocus", | |
"sprout-green", | |
"spruce-yellow", | |
"sprucestone", | |
"star-sapphire", | |
"star-white", | |
"starfish", | |
"stargazer", | |
"starlight-blue", | |
"steel-gray", | |
"steeple-gray", | |
"stellar", | |
"sterling-blue", | |
"stillwater", | |
"stone-blue", | |
"stone-gray", | |
"stone-green", | |
"stonewash", | |
"storm", | |
"storm-blue", | |
"storm-front", | |
"storm-gray", | |
"stormy-sea", | |
"stormy-weather", | |
"stratosphere", | |
"straw", | |
"strawberry-cream", | |
"strawberry-ice", | |
"strawberry-pink", | |
"stretch-limo", | |
"striking-purple", | |
"string", | |
"strong-blue", | |
"stucco", | |
"subtle-green", | |
"sudan-brown", | |
"sugar-almond", | |
"sugar-coral", | |
"sugar-swizzle", | |
"sulphur", | |
"sulphur-spring", | |
"summer-fig", | |
"summer-green", | |
"summer-melon", | |
"summer-shower", | |
"sun-baked", | |
"sun-dried-tomato", | |
"sun-kiss", | |
"sun-orange", | |
"sunburn", | |
"sunburst", | |
"sundress", | |
"sunflower", | |
"sunkist-coral", | |
"sunlight", | |
"sunlit-allium", | |
"sunny-lime", | |
"sunset-gold", | |
"sunset-purple", | |
"sunshine", | |
"super-lemon", | |
"super-pink", | |
"surf-spray", | |
"surf-the-web", | |
"swamp", | |
"swedish-blue", | |
"sweet-cream", | |
"sweet-grape", | |
"sweet-lavender", | |
"sweet-lilac", | |
"sweet-pea", | |
"sycamore", | |
"sylvan-green", | |
"syrah", | |
"taffy", | |
"tahitian-tide", | |
"tan", | |
"tanager-turquoise", | |
"tandori-spice", | |
"tangelo", | |
"tangerine", | |
"tangerine-tango", | |
"tango-red", | |
"tannin", | |
"taos-taupe", | |
"tap-shoe", | |
"tapenade", | |
"tapestry", | |
"tapioca", | |
"tarmac", | |
"tarragon", | |
"taupe-gray", | |
"tawny-birch", | |
"tawny-brown", | |
"tawny-olive", | |
"tawny-orange", | |
"tawny-port", | |
"tea", | |
"tea-rose", | |
"teaberry", | |
"teak", | |
"teal", | |
"teal-blue", | |
"teal-green", | |
"tempest", | |
"tender-greens", | |
"tender-peach", | |
"tender-shoots", | |
"tender-yellow", | |
"tendril", | |
"terra-cotta", | |
"thai-curry", | |
"thistle", | |
"thistle-down", | |
"thrush", | |
"thyme", | |
"tibetan-red", | |
"tibetan-stone", | |
"tidal-foam", | |
"tidepool", | |
"tigerlily", | |
"tigers-eye", | |
"tile-blue", | |
"tillandsia-purple", | |
"timber-wolf", | |
"tinsel", | |
"tiramisu", | |
"titanium", | |
"toadstool", | |
"toast", | |
"toasted-almond", | |
"toasted-coconut", | |
"toasted-nut", | |
"tobacco-brown", | |
"toffee", | |
"tofu", | |
"tomato", | |
"tomato-cream", | |
"tomato-puree", | |
"topaz", | |
"toreador", | |
"tornado", | |
"tortoise-shell", | |
"total-eclipse", | |
"tourmaline", | |
"tradewinds", | |
"transparent-yellow", | |
"travertine", | |
"tree-house", | |
"treetop", | |
"trekking-green", | |
"trellis", | |
"trooper", | |
"tropical-green", | |
"tropical-peach", | |
"true-blue", | |
"true-navy", | |
"true-red", | |
"tuffet", | |
"tulipwood", | |
"turbulence", | |
"turf-green", | |
"turkish-coffee", | |
"turkish-sea", | |
"turkish-tile", | |
"turmeric", | |
"turquoise", | |
"turtle-green", | |
"turtledove", | |
"tuscany", | |
"twilight-blue", | |
"twilight-mauve", | |
"twilight-purple", | |
"twill", | |
"twist-of-lime", | |
"ultra-violet", | |
"ultramarine", | |
"ultramarine-green", | |
"umber", | |
"urban-chic", | |
"valerian", | |
"valiant-poppy", | |
"vallarta-blue", | |
"vanilla", | |
"vanilla-cream", | |
"vanilla-custard", | |
"vanilla-ice", | |
"vapor-blue", | |
"vaporous-gray", | |
"veiled-rose", | |
"velvet-morning", | |
"verdant-green", | |
"vermillion-orange", | |
"veronica", | |
"very-berry", | |
"very-grape", | |
"vetiver", | |
"vibrant-green", | |
"vibrant-orange", | |
"vibrant-yellow", | |
"victoria-blue", | |
"vineyard-green", | |
"vineyard-wine", | |
"vintage-indigo", | |
"vintage-khaki", | |
"vintage-violet", | |
"viola", | |
"violet", | |
"violet-ice", | |
"violet-indigo", | |
"violet-quartz", | |
"violet-storm", | |
"violet-tulip", | |
"violet-tulle", | |
"viridian-green", | |
"viridis", | |
"virtual-pink", | |
"vista-blue", | |
"vivacious", | |
"vivid-blue", | |
"vivid-green", | |
"vivid-viola", | |
"volcanic-glass", | |
"vulcan", | |
"walnut", | |
"wan-blue", | |
"warm-apricot", | |
"warm-olive", | |
"warm-sand", | |
"warm-taupe", | |
"wasabi", | |
"water-lily", | |
"watercress", | |
"waterfall", | |
"wax-yellow", | |
"wedgewood", | |
"weeping-willow", | |
"wet-weather", | |
"wheat", | |
"whisper-green", | |
"whisper-pink", | |
"whisper-white", | |
"whispering-blue", | |
"white-alyssum", | |
"white-asparagus", | |
"white-jade", | |
"white-pepper", | |
"white-sand", | |
"white-smoke", | |
"white-swan", | |
"whitecap-gray", | |
"wild-aster", | |
"wild-dove", | |
"wild-ginger", | |
"wild-lime", | |
"wild-orchid", | |
"wild-rose", | |
"willow", | |
"willow-bough", | |
"willowherb", | |
"wind-chime", | |
"windsor-wine", | |
"wineberry", | |
"winetasting", | |
"winsome-orchid", | |
"winter-bloom", | |
"winter-green", | |
"winter-moss", | |
"winter-pear", | |
"winter-sky", | |
"winter-twig", | |
"winter-wheat", | |
"winter-white", | |
"wisteria", | |
"wistful-mauve", | |
"withered-rose", | |
"wood-ash", | |
"wood-thrush", | |
"wood-violet", | |
"woodbine", | |
"woodrose", | |
"woodsmoke", | |
"wren", | |
"wrought-iron", | |
"xenon-blue", | |
"yam", | |
"yarrow", | |
"yellow-cream", | |
"yellow-iris", | |
"yellow-pear", | |
"yolk-yellow", | |
"young-wheat", | |
"yucca", | |
"zen-blue", | |
"zephyr", | |
"zephyr-blue", | |
"zephyr-green", | |
"zinc", | |
"zinfandel", | |
"zinnia", | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment