So I am setting an Excel cell\'s Interior Color to a certain value, like below:
worksheet.Cells[1, 1].Interior.Color = 0xF1DCDB;
However, when
Please note that this is not a bug!Red starts from the lower bit and Green is in the middle and Blue takes the highest bits
B G R 00000000 00000000 00000000
The calculation is: (65536 * Blue) + (256 * Green) + (Red)
Thank you.