Please make sure you have a full site backup before making any changes.
In the Text content, wrap your dynamic field
Replace {field:category} with this:
<span class="status-label" data-status="{field:category}">{field:category}</span>
And then add your CSS in your custom.css file
#sppb-addon-54be558b-2a26-4186-8fec-4e64c1bdaf4b .status-label[data-status="OK"]{
color: green !important;
}
#sppb-addon-54be558b-2a26-4186-8fec-4e64c1bdaf4b .status-label[data-status="WARNING"]{
color: yellow !important;
}
#sppb-addon-54be558b-2a26-4186-8fec-4e64c1bdaf4b .status-label[data-status="ERROR"]{
color: red !important;
}