The documentation shows this example:
#set page(
paper: "us-letter",
header: align(right)[
A fluid dynamic model for
glacier flow
],
numbering: "1",
)
#set par(justify: true)
#set text(
font: "Libertinus Serif",
size: 11pt,
)
#lorem(600)
But I’d also like to colour the header text blue like this:
#set page(
paper: "us-legal",
header: text(font: "Barlow", size: 18pt, fill: color.linear-rgb(23, 55, 199))[
A fluid *dynamic* model for
glacier flow
],
numbering: "1",
)
How do I combine both the colour and alignment for the header?