Reports usages of java.awt.Color to create gray colors.

Quick-fix Convert to Gray replaces it using com.intellij.ui.Gray constants instead.

Example:

Color myGray = new Color(55, 55, 55);

After the quick-fix is applied:

Color myGray = Gray._55;