// style1s.scss
$primary-color: blue;

body {
  background-color: $primary-color;
}
sass styles1.scss:styles1.css

// Add a section
$section = $phpWord->addSection();

// Add text
$section->addText('Hello World!');

// Add a table
$table = $section->addTable();
for ($i = 1; $i <= 10; $i++) {
    $table->addRow();
    $table->addCell(1750)->addText("Row {$i} Column 1");
    $table->addCell(1750)->addText("Row {$i} Column 2");
    $table->addCell(1750)->addText("Row {$i} Column 3");
}