Search for this code in your index.html after exporting.
<!-- This outlines the canvas with a black border and makes the page background black. -->
<style type="text/css">
canvas { border: 1px solid black; }
body { background-color: black; color: white; }
</style>
Is a basic CSS3 definition of your page.
Border attribute in canvas tag modify the box surrounding the layout.
Background-color in body tag modify the color of your page. (color modify the color of the text in your page).