takumi 2.3.2

Render UI component trees to images.
Documentation
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>style_margin</title>
    <link rel="stylesheet" href="../shared.css" />
  </head>
  <body style="width: 1200px; height: 630px">
    <div style="display: flex; width: 100%; height: 100%; background-color: rgb(0, 0, 255)">
      <div
        style="
          display: flex;
          margin-top: 20px;
          margin-right: 20px;
          margin-bottom: 20px;
          margin-left: 20px;
          width: 100px;
          height: 100px;
          background-color: rgb(255, 0, 0);
        "
      ></div>
    </div>
  </body>
</html>