I have an application that generates a SpreadsheetML file. It contains style elements that specify the background colors of cells.
e.g.
the hex triplet color above translates to an RGB of 128, 128, 192; a rather nice purple colour (as can be viewed in PaintBrush). However when the cell is rendered in Excel the background colour is a dull dark gray! (#808080).
Are there any known issues/workarounds regarding the excel color palette?
e.g.
Code:
<Style ss:ID="s21">
<Alignment ss:Vertical="Center"/>
<Borders/>
<Font/>
<Interior ss:Color="#8080C0" ss:Pattern="Solid"/>
<NumberFormat/>
<Protection/>
</Style>
the hex triplet color above translates to an RGB of 128, 128, 192; a rather nice purple colour (as can be viewed in PaintBrush). However when the cell is rendered in Excel the background colour is a dull dark gray! (#808080).
Are there any known issues/workarounds regarding the excel color palette?