--- id: 5d8a4cfbe6b6180ed9a1ca22 title: Part 69 challengeType: 0 dashedName: part-69 --- # --description-- The circles are now visible, but I don't like the color. Use the appropriate function to set the `fill` to `white` and the `stroke` to your `twitterColor` variable. # --hints-- test-text ```js assert( $('svg circle')[0].getAttribute('fill') === 'white' && $('svg circle')[0].getAttribute('stroke') === '#7cd9d1' ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```