$(function () {
  $("dl.user_profile dt:contains('Playstation')").each(function () {
    var item = $(this).html();
    $(this).html('<span style="color:blue">' + item + '</span>');
  });
});
