Control Color not displaying

I have set a font color in the form to Blue yet the form still shows as black. In explorer, you can see where it was set but it is being overwritten

. I want the attachment controls to display as blue.

Dear Jennifer,
Please, try the following CSS for New and Edit form:

.k-widget.k-upload.k-header.k-upload-sync *{
    color: #00b0f0!important;
}

Then, for the Display form, you’ll need the following JavaScript:

fd.spRendered(function(){
  $(fd.field('Attachments').$el).addClass('attachments');
});

And the following CSS:

.attachments *{
    color: #00b0f0!important;
}