Creando un documento de Excel con OpenXml SDK 2.0

He creado un documento de Excel con OpenXml SDK 2.0, ahora tengo que diseñarlo, pero no puedo.

No sé cómo pintar el color de fondo o cambiar el tamaño de fuente en diferentes celdas.

Mi código para crear una celda es:

<code>private static Cell CreateTextCell(string header, string text, UInt32Value index)
{
    Cell c = new Cell();
    c.DataType = CellValues.InlineString;
    c.CellReference = header + index;
    InlineString inlineString = new InlineString();
    DocumentFormat.OpenXml.Spreadsheet.Text t = new DocumentFormat.OpenXml.Spreadsheet.Text();
    t.Text = text;
    inlineString.AppendChild(t);
    c.AppendChild(inlineString);
    return c;
} 
</code>

Respuestas a la pregunta(3)

Su respuesta a la pregunta