I have the table below. How would I set the background color of the first column (Letter) to blue and its text to white? TIA.
#figure(align(center)[#table(
columns: 2,
align: (col, row) => (left, right,).at(col),
table.header(
table.cell(align: center)[*Letter*],
table.cell(align: center)[*Number*],
),
[a], [1],
[b], [2],
[c], [3],
)],
caption: [My table]
)