A simple way to use named colors for drawing on an image

I found two ways to use colors for drawing on an image:

  1. Cryptic one:
fillPoly(img, quads, Scalar(0, 255, 191));
  1. Bringing mostly unneeded dependencies:
#include <opencv2/viz/types.hpp>
...
fillPoly(img, quads, viz::Color::lime());

Is there a simpler way?