Files
docx-js/demo/56-background-color.ts
2023-06-05 00:33:43 +01:00

35 lines
916 B
TypeScript

// Change background colour of whole document
import * as fs from "fs";
import { Document, Packer, Paragraph, Tab, TextRun } from "docx";
const doc = new Document({
background: {
color: "C45911",
},
sections: [
{
properties: {},
children: [
new Paragraph({
children: [
new TextRun("Hello World"),
new TextRun({
text: "Foo Bar",
bold: true,
}),
new TextRun({
children: [new Tab(), "Github is the best"],
bold: true,
}),
],
}),
],
},
],
});
Packer.toBuffer(doc).then((buffer) => {
fs.writeFileSync("My Document.docx", buffer);
});