If you want to find a cell by colour, you can certainly do so. From memory, you
need the Interior property of the cell, and probably the PatternColor property
of that ...
Range("a1").Interior.PatternColor
However, you're better using other information to tell you where the green cell
should be, and then make it green.
Normally, I'd use conditional formatting for conditional colouring like this.