I understand that you would like to change the colors of the circles after using the 'viscircles' command. In order to illustrate this, I am modifying the first example given in the following documentation: https://www.mathworks.com/help/images/ref/viscircles.html
A = imread('circlesBrightDark.png');
imshow(A)
Rmin = 30;
Rmax = 65;
[centersBright, radiiBright] = imfindcircles(A,[Rmin Rmax],'ObjectPolarity','bright');
h = viscircles(centersBright, radiiBright);
h
h.Children
h.Children(1)
h.Children(1).Color = 'b'