--- id: 5d822fd413a79914d39e9926 title: Part 93 challengeType: 0 dashedName: part-93 --- # --description-- Give the `fb3-window` elements a `width` of `25%`, a `height` of `80%`, and use your `--window-color1` variable as the `background-color` value. # --hints-- test-text ```js const fb3w = code.match(/\.fb3-window\s*{[\s\S]+?[^}]}/g)[0]; assert( /width\s*:\s*25%\s*(;|})/g.test(fb3w) && /height\s*:\s*80%\s*(;|})/g.test(fb3w) && /background-color\s*:\s*var\(\s*--window-color1\s*\)\s*(;|})/g.test(fb3w) ); ``` # --seed-- ## --seed-contents-- ```html