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