diff options
author | blackbird <devnull@localhost> | 2006-12-21 22:10:34 +0100 |
---|---|---|
committer | blackbird <devnull@localhost> | 2006-12-21 22:10:34 +0100 |
commit | f86e5908ca4c35bcbe8fe25ba839ff5c9a7a9f34 (patch) | |
tree | 98237a777c718b58116b68e7643c79e76acf10f8 /pygments/styles/trac.py | |
parent | 95377ce6c229ec8cb1df8e358337fc524b8476c8 (diff) | |
download | pygments-f86e5908ca4c35bcbe8fe25ba839ff5c9a7a9f34.tar.gz |
[svn] implemented filters for pygments (first approach, api might change), it's impossible at the moment to add filters by using pygmentize
Diffstat (limited to 'pygments/styles/trac.py')
-rw-r--r-- | pygments/styles/trac.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pygments/styles/trac.py b/pygments/styles/trac.py index 158b1f82..df28045a 100644 --- a/pygments/styles/trac.py +++ b/pygments/styles/trac.py @@ -21,6 +21,7 @@ class TracStyle(Style): styles = { Comment: 'italic #999988', Comment.Preproc: 'bold noitalic #999999', + Comment.Special: 'bold #999999', Operator: 'bold', @@ -37,8 +38,8 @@ class TracStyle(Style): Name.Class: 'bold #445588', Name.Exception: 'bold #990000', Name.Namespace: '#555555', - Name.Variable: '#ff99ff', - Name.Constant: '#ff99ff', + Name.Variable: '#008080', + Name.Constant: '#008080', Name.Tag: '#000080', Name.Attribute: '#008080', Name.Entity: '#800080', |