I am using ProgressDialog for showing progressbar 
            ProgressDialog progressDialog = new ProgressDialog(context);
            progress         
        
In style.xml create style for dialog box :
In this  "android:textColorPrimary" need to define color you want to show and in java code define style of ProgressDialog like :  
ProgressDialog progressDialog = new ProgressDialog(context,R.style.AppCompatAlertDialogStyle);
MORE : http://androidprogressdialogcustomcolor.blogspot.in/