diff options
author | t-b <devnull@localhost> | 2013-10-31 20:50:18 +0100 |
---|---|---|
committer | t-b <devnull@localhost> | 2013-10-31 20:50:18 +0100 |
commit | 31d0dd8795a3d9f2d933206ed3bcfc3adb34b61f (patch) | |
tree | e9b0e2c479a85b0496f0c1f5b5b1319a474b1dce | |
parent | 1e80109c27dd4331d09d48472f64d4ebf75c6313 (diff) | |
download | pygments-31d0dd8795a3d9f2d933206ed3bcfc3adb34b61f.tar.gz |
Add class comment and a custom color for the decorator
-rw-r--r-- | pygments/styles/igor.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pygments/styles/igor.py b/pygments/styles/igor.py index c166ab6e..f9bcd55b 100644 --- a/pygments/styles/igor.py +++ b/pygments/styles/igor.py @@ -3,11 +3,15 @@ from pygments.token import Keyword, Name, Comment, String, Error, \ Number, Operator, Generic class IgorStyle(Style): + """ + Pygments version of the official colors for Igor Pro procedures. + """ default_style = "" styles = { Comment: 'italic #FF0000', Keyword: '#0000FF', Name.Function: '#C34E00', + Name.Decorator: '#CC00A3', Name.Class: '#007575', String: '#009C00' } |