I\'m rather new to C# and find it almost unspeakable that there isn\'t a simple way for converting an RGB color or system.color to a WdColor!
VB is simple, C# - is i
Color c = Colors.Blue; var wdc = (Microsoft.Office.Interop.Word.WdColor)(c.R + 0x100 * c.G + 0x10000 * c.B);