--- id: 5d8a4cfbe6b6180ed9a1ca14 title: Step 55 challengeType: 0 dashedName: step-55 --- # --description-- Add three `attr` functions to the selection; one to set the `stroke` to your `tumblrColor` variable, another to set the `stroke-width` to `3`, and a third to set the `fill` to `transparent`. # --hints-- test-text ```js const tumblrPath = $('svg path')[3]; assert( tumblrPath.getAttribute('stroke') === '#f6dd71' && tumblrPath.getAttribute('stroke-width') == '3' && tumblrPath.getAttribute('fill') === 'transparent' ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```