I use pygments to highlight code.
And I want to add some specify style to a part of code in highlight block.
For example, I want to change "private String" color to red.
{% highlight java %}
public class A {
<span color="red">private String</span> xx;
}
{% endhighlight %}
How can I do this?