Edit in JSFiddle

var paper = Raphael("test");

paper.text(10, 50, "Filters are cool")
    .attr({
        "fill": "red", 
        "stroke": "black",
        "font-family": "Lemon",
        "font-size": "60px",
        "font-weight": "bold",
        "text-anchor": "start"
    })
    .emboss()
    .shadow();