I am trying to use the System.Drawing.Color namespace. I cannot define it at the top of the class:

However, I can reference it inside the class. That is, I can use this line of code, and it works:
txtBox.BackColor = System.Drawing.Color.LightPink;
... but I would just like to do this:
txtBox.BackColor = Color.LightPink;
If this is a question of missing a / dll link, why can I link to System.Drawing.Color in my code?
source share