To pop up an alert window with larger text with red color

NSRunAlertPanel has been used to alert user like the following:

dispatch_sync(dispatch_get_main_queue(), ^{

                    NSRunAlertPanel(@"Note", @"Please put RED sticker on DUT!", @"OK", nil, nil);

                });

It continues the following process after clicking button "OK"

I'd like to enlarger the text size and change the text color, but there is no related parameter in NSRunAlertPanel. How could I do?

To pop up an alert window with larger text with red color
 
 
Q