diff options
Diffstat (limited to 'pygments/styles/trac.py')
-rw-r--r-- | pygments/styles/trac.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/styles/trac.py b/pygments/styles/trac.py index 0e32986f..d6bd4cf1 100644 --- a/pygments/styles/trac.py +++ b/pygments/styles/trac.py @@ -11,7 +11,7 @@ from pygments.style import Style from pygments.token import Keyword, Name, Comment, String, Error, \ - Number, Operator, Generic + Number, Operator, Generic, Whitespace class TracStyle(Style): @@ -22,6 +22,7 @@ class TracStyle(Style): default_style = '' styles = { + Whitespace: '#bbbbbb', Comment: 'italic #999988', Comment.Preproc: 'bold noitalic #999999', Comment.Special: 'bold #999999', |