--- id: 5d822fd413a79914d39e993c title: Part 116 challengeType: 0 dashedName: part-116 --- # --description-- In the `sky` class of the media query, change the two `#ffcf33` color values to `#ccc`, the `#ffff66` to `#445`, and the `#bbeeff` to `#223`. Then you can resize your window to see the background change colors. # --hints-- test-text ```js const sky = code.match(/\.sky\s*{[\s\S]+?[^}]}/g)[1]; assert( /background\s*:\s*radial-gradient\(\s*closest-corner\s+circle\s+at\s+15%\s+15%\s*,\s*#ccc\s*(0%\s*,|,)\s*#ccc\s*20%\s*,\s*#445\s*21%\s*,\s*#223\s*100%\s*\)\s*(;|})/g.test( sky ) ); ``` # --seed-- ## --seed-contents-- ```html