I need a formula that gives the following result

If I type a colour into the first column, a price appears in the second column, depending on the colour I type in.

I have got this working up to a point using the if statement below but have exceeded nesting levels.

=IF(ISNUMBER(SEARCH("orange",A2)),38.36,IF(ISNUMBER(SEARCH("black",A2)),23.38,IF(ISNUMBER(SEARCH("blue",A2)),23.21,IF(ISNUMBER(SEARCH("white",A2)),31.5,IF(ISNUMBER(SEARCH("brown",A2)),36.28,IF(ISNUMBER(SEARCH("green",A2)),26.89))))))

Any help much appreciated.

Tommo