Skip to content

Instantly share code, notes, and snippets.

@jffry
Created September 8, 2017 13:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jffry/328b3e858f57a50dc65e46c509ce8b6b to your computer and use it in GitHub Desktop.
Save jffry/328b3e858f57a50dc65e46c509ce8b6b to your computer and use it in GitHub Desktop.
AI-generated color names
(ns jffry.colors.ai)
(defn rgb
[r g b]
(str "rgb(" r "," g "," b ")"))
;first generation of neural net generated colors from
;http://lewisandquark.tumblr.com/post/160776374467/new-paint-colors-invented-by-neural-network
;first checkpoint - basic, valid RGB values
(def caae-brae (rgb 228 128 116))
(def caae-blae-1 (rgb 117 118 115))
(def saae-ble (rgb 127 117 126))
(def caae-blae-2 (rgb 127 125 118))
;second checkpoint - spell words, doesn't know meaning
(def soreer-gray (rgb 121 121 110))
(def sane-green (rgb 121 125 190)) ;pale purplish blue
(def reree-gray (rgb 213 220 122)) ;light lime/yellow green
(def canter-green (rgb 140 120 120)) ;reddish brownish gray
(def rererte-green (rgb 223 116 120)) ;pastel red
(def conk-green (rgb 185 212 221)) ;light teal/blue
(def sole-gray (rgb 181 112 121)) ;mauve ish
;Let’s check in with what the more-creative setting is producing.
(def wltlttf-bzt (rgb 25 64 0))
(def bylfgoam-glosd (rgb 229 233 112))
(def gorlpateehecd (rgb 63 62 90))
(def woleebaph-ronder-wily (rgb 195 199 199))
(def iroeee-cer-mowt (rgb 222 128 187))
(def dondarf (rgb 145 151 226))
;With more training
(def sticks-red (rgb 171 37 34))
(def coral-gray (rgb 129 102 100))
(def rover-white (rgb 222 222 213))
(def corcaunitiol-orange (rgb 239 212 202))
(def ghastly-pink (rgb 231 137 165))
(def power-gray (rgb 151 124 112))
(def navel-tan (rgb 199 173 140))
(def bock-coe-white (rgb 221 215 236))
(def horble-gray (rgb 178 181 196))
(def homestar-brown (rgb 133 104 85))
(def snader-brown (rgb 144 106 74))
(def golder-craam (rgb 237 217 177))
(def hurky-white (rgb 232 223 215))
(def burf-pink (rgb 223 173 179))
(def rose-hork (rgb 230 215 198))
;unreliable even with more training
(def black-hand (rgb 211 226 214))
(def gray-pubic (rgb 6 193 214))
(def ferry-purple (rgb 116 70 60))
(def ice-gray (rgb 184 174 17))
(def gray-pock (rgb 130 96 62))
(def barial-blue (rgb 167 168 169))
(def stoomy-brown (rgb 124 130 72))
;"The neural network has really really bad ideas for paint names."
(def clardic-fug (rgb 112 113 84))
(def snowbonk (rgb 201 199 165))
(def catbabel (rgb 97 93 68))
(def bunflow (rgb 190 174 155))
(def ronching-blue (rgb 121 114 125))
(def bank-butt (rgb 221 196 199))
(def caring-tan (rgb 171 166 170))
(def stargoon (rgb 233 191 141))
(def sink (rgb 176 138 110))
(def stummy-beige (rgb 216 200 185))
(def dorkwood (rgb 61 63 66))
(def flower (rgb 178 184 196))
(def sand-dan (rgb 201 172 143))
(def grade-bat (rgb 48 94 83))
(def light-of-blast (rgb 175 150 147))
(def grass-bat (rgb 176 99 108))
(def sindis-poop (rgb 204 205 194))
(def dope (rgb 219 209 179))
(def testing (rgb 156 101 106))
(def stoner-blue (rgb 152 165 159))
(def burble-simp (rgb 226 181 132))
(def stanky-bean (rgb 197 162 171))
(def turdly (rgb 190 164 116))
;TODO: colors from round two at http://lewisandquark.tumblr.com/post/160985569682/paint-colors-designed-by-neural-network-part-2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment